blob: 10078a743564415d6aeabd184b316b65dd831c0d [file] [log] [blame]
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001/*
2 * blkfront.c
3 *
4 * XenLinux virtual block device driver.
5 *
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
18 *
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
25 *
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 * IN THE SOFTWARE.
36 */
37
38#include <linux/interrupt.h>
39#include <linux/blkdev.h>
Bob Liu907c3eb2015-07-13 17:55:24 +080040#include <linux/blk-mq.h>
Ian Campbell597592d2008-02-21 13:03:45 -080041#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020042#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070043#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020045#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010046#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090047#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010048#include <linux/list.h>
Juergen Grossa46b5362018-08-13 16:01:11 +020049#include <linux/workqueue.h>
Juergen Gross3a169c02020-04-03 11:00:34 +020050#include <linux/sched/mm.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070051
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070052#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070053#include <xen/xenbus.h>
54#include <xen/grant_table.h>
55#include <xen/events.h>
56#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010057#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070058
59#include <xen/interface/grant_table.h>
60#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070061#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070062
63#include <asm/xen/hypervisor.h>
64
Julien Grall6cc568332015-08-13 13:13:35 +010065/*
66 * The minimal size of segment supported by the block framework is PAGE_SIZE.
67 * When Linux is using a different page size than Xen, it may not be possible
68 * to put all the data in a single segment.
69 * This can happen when the backend doesn't support indirect descriptor and
70 * therefore the maximum amount of data that a request can carry is
71 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE = 44KB
72 *
73 * Note that we only support one extra request. So the Linux page size
74 * should be <= ( 2 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) =
75 * 88KB.
76 */
77#define HAS_EXTRA_REQ (BLKIF_MAX_SEGMENTS_PER_REQUEST < XEN_PFN_PER_PAGE)
78
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070079enum blkif_state {
80 BLKIF_STATE_DISCONNECTED,
81 BLKIF_STATE_CONNECTED,
82 BLKIF_STATE_SUSPENDED,
83};
84
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020085struct grant {
86 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010087 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010088 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020089};
90
Julien Grall6cc568332015-08-13 13:13:35 +010091enum blk_req_status {
92 REQ_WAITING,
93 REQ_DONE,
94 REQ_ERROR,
95 REQ_EOPNOTSUPP,
96};
97
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070098struct blk_shadow {
99 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400100 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200101 struct grant **grants_used;
102 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200103 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100104 unsigned int num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100105 enum blk_req_status status;
106
107 #define NO_ASSOCIATED_ID ~0UL
108 /*
109 * Id of the sibling if we ever need 2 requests when handling a
110 * block I/O request
111 */
112 unsigned long associated_id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200113};
114
Christoph Hellwig26095872017-04-20 16:03:08 +0200115struct blkif_req {
Bart Van Assche31c4ccc2017-07-21 19:11:10 +0200116 blk_status_t error;
Christoph Hellwig26095872017-04-20 16:03:08 +0200117};
118
119static inline struct blkif_req *blkif_req(struct request *rq)
120{
121 return blk_mq_rq_to_pdu(rq);
122}
123
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200124static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700125static const struct block_device_operations xlvbd_block_fops;
Juergen Grossa46b5362018-08-13 16:01:11 +0200126static struct delayed_work blkfront_work;
127static LIST_HEAD(info_list);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700128
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200129/*
130 * Maximum number of segments in indirect requests, the actual value used by
131 * the frontend driver is the minimum of this value and the value provided
132 * by the backend driver.
133 */
134
135static unsigned int xen_blkif_max_segments = 32;
Joe Perches5657a812018-05-24 13:38:59 -0600136module_param_named(max_indirect_segments, xen_blkif_max_segments, uint, 0444);
Jan Beulich14e710f2016-02-10 04:21:15 -0700137MODULE_PARM_DESC(max_indirect_segments,
138 "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200139
Bob Liu28d949b2015-11-14 11:12:14 +0800140static unsigned int xen_blkif_max_queues = 4;
Joe Perches5657a812018-05-24 13:38:59 -0600141module_param_named(max_queues, xen_blkif_max_queues, uint, 0444);
Bob Liu28d949b2015-11-14 11:12:14 +0800142MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
143
Bob Liu86839c52015-06-03 13:40:03 +0800144/*
145 * Maximum order of pages to be used for the shared ring between front and
146 * backend, 4KB page granularity is used.
147 */
148static unsigned int xen_blkif_max_ring_order;
Joe Perches5657a812018-05-24 13:38:59 -0600149module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, 0444);
Bob Liu86839c52015-06-03 13:40:03 +0800150MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
151
Julien Grallc004a6f2015-07-22 16:44:54 +0100152#define BLK_RING_SIZE(info) \
153 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
154
Bob Liu86839c52015-06-03 13:40:03 +0800155/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500156 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
157 * characters are enough. Define to 20 to keep consistent with backend.
Bob Liu86839c52015-06-03 13:40:03 +0800158 */
159#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800160/*
161 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
162 */
163#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700164
165/*
Bob Liu81f35162015-11-14 11:12:11 +0800166 * Per-ring info.
167 * Every blkfront device can associate with one or more blkfront_ring_info,
168 * depending on how many hardware queues/rings to be used.
169 */
170struct blkfront_ring_info {
Bob Liu11659562015-11-14 11:12:13 +0800171 /* Lock to protect data in every ring buffer. */
172 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800173 struct blkif_front_ring ring;
174 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
175 unsigned int evtchn, irq;
176 struct work_struct work;
177 struct gnttab_free_callback callback;
Bob Liu81f35162015-11-14 11:12:11 +0800178 struct list_head indirect_pages;
Bob Liu73716df2015-11-16 16:51:39 -0500179 struct list_head grants;
180 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800181 unsigned long shadow_free;
182 struct blkfront_info *dev_info;
Juergen Gross0265d6e2020-01-17 15:39:55 +0100183 struct blk_shadow shadow[];
Bob Liu81f35162015-11-14 11:12:11 +0800184};
185
186/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700187 * We have one of these per vbd, whether ide, scsi or 'other'. They
188 * hang in private_data off the gendisk structure. We may end up
189 * putting all kinds of interesting stuff here :-)
190 */
191struct blkfront_info
192{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000193 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700194 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700195 struct gendisk *gd;
Bob Liu172335a2016-07-01 17:43:39 -0400196 u16 sector_size;
197 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700198 int vdevice;
199 blkif_vdev_t handle;
200 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800201 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800202 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700203 struct request_queue *rq;
Jan Beulichb32728f2017-01-23 08:12:19 -0700204 unsigned int feature_flush:1;
205 unsigned int feature_fua:1;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400206 unsigned int feature_discard:1;
207 unsigned int feature_secdiscard:1;
Jan Beulichb32728f2017-01-23 08:12:19 -0700208 unsigned int feature_persistent:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800209 unsigned int discard_granularity;
210 unsigned int discard_alignment;
Julien Grallc004a6f2015-07-22 16:44:54 +0100211 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200212 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700213 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800214 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800215 struct blkfront_ring_info *rinfo;
216 unsigned int nr_rings;
Juergen Gross4ab50af2020-03-05 16:51:29 +0100217 unsigned int rinfo_size;
Bob Liu7b427a52016-06-27 16:33:24 +0800218 /* Save uncomplete reqs and bios for migration. */
219 struct list_head requests;
220 struct bio_list bio_list;
Juergen Grossa46b5362018-08-13 16:01:11 +0200221 struct list_head info_list;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700222};
223
Jan Beulich0e345822010-08-07 18:28:55 +0200224static unsigned int nr_minors;
225static unsigned long *minors;
226static DEFINE_SPINLOCK(minor_lock);
227
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700228#define GRANT_INVALID_REF 0
229
230#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700231#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700232
233#define BLKIF_MAJOR(dev) ((dev)>>8)
234#define BLKIF_MINOR(dev) ((dev) & 0xff)
235
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700236#define EXT_SHIFT 28
237#define EXTENDED (1<<EXT_SHIFT)
238#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
239#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000240#define EMULATED_HD_DISK_MINOR_OFFSET (0)
241#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200242#define EMULATED_SD_DISK_MINOR_OFFSET (0)
243#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700244
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700245#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700246
Julien Grallc004a6f2015-07-22 16:44:54 +0100247/*
248 * Grants are always the same size as a Xen page (i.e 4KB).
249 * A physical segment is always the same size as a Linux page.
250 * Number of grants per physical segment
251 */
252#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
253
254#define GRANTS_PER_INDIRECT_FRAME \
255 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
256
Julien Grallc004a6f2015-07-22 16:44:54 +0100257#define INDIRECT_GREFS(_grants) \
258 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
259
Bob Liu81f35162015-11-14 11:12:11 +0800260static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800261static void blkfront_gather_backend_features(struct blkfront_info *info);
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -0800262static int negotiate_mq(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200263
Juergen Gross4ab50af2020-03-05 16:51:29 +0100264#define for_each_rinfo(info, ptr, idx) \
265 for ((ptr) = (info)->rinfo, (idx) = 0; \
266 (idx) < (info)->nr_rings; \
267 (idx)++, (ptr) = (void *)(ptr) + (info)->rinfo_size)
268
269static inline struct blkfront_ring_info *
270get_rinfo(const struct blkfront_info *info, unsigned int i)
271{
272 BUG_ON(i >= info->nr_rings);
273 return (void *)info->rinfo + i * info->rinfo_size;
274}
275
Bob Liu81f35162015-11-14 11:12:11 +0800276static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700277{
Bob Liu81f35162015-11-14 11:12:11 +0800278 unsigned long free = rinfo->shadow_free;
279
280 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
281 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
282 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700283 return free;
284}
285
Bob Liu81f35162015-11-14 11:12:11 +0800286static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500287 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700288{
Bob Liu81f35162015-11-14 11:12:11 +0800289 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400290 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800291 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400292 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800293 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
294 rinfo->shadow[id].request = NULL;
295 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400296 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700297}
298
Bob Liu81f35162015-11-14 11:12:11 +0800299static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100300{
Bob Liu81f35162015-11-14 11:12:11 +0800301 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100302 struct page *granted_page;
303 struct grant *gnt_list_entry, *n;
304 int i = 0;
305
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500306 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100307 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
308 if (!gnt_list_entry)
309 goto out_of_memory;
310
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100311 if (info->feature_persistent) {
312 granted_page = alloc_page(GFP_NOIO);
313 if (!granted_page) {
314 kfree(gnt_list_entry);
315 goto out_of_memory;
316 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100317 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100318 }
319
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100320 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500321 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100322 i++;
323 }
324
325 return 0;
326
327out_of_memory:
328 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500329 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100330 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100331 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100332 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100333 kfree(gnt_list_entry);
334 i--;
335 }
336 BUG_ON(i != 0);
337 return -ENOMEM;
338}
339
Bob Liu73716df2015-11-16 16:51:39 -0500340static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100341{
342 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100343
Bob Liu73716df2015-11-16 16:51:39 -0500344 BUG_ON(list_empty(&rinfo->grants));
345 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100346 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100347 list_del(&gnt_list_entry->node);
348
Julien Grall4f503fb2015-07-01 14:10:38 +0100349 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500350 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100351
352 return gnt_list_entry;
353}
354
355static inline void grant_foreign_access(const struct grant *gnt_list_entry,
356 const struct blkfront_info *info)
357{
358 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
359 info->xbdev->otherend_id,
360 gnt_list_entry->page,
361 0);
362}
363
364static struct grant *get_grant(grant_ref_t *gref_head,
365 unsigned long gfn,
Bob Liu73716df2015-11-16 16:51:39 -0500366 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100367{
Bob Liu73716df2015-11-16 16:51:39 -0500368 struct grant *gnt_list_entry = get_free_grant(rinfo);
369 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100370
371 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100372 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100373
374 /* Assign a gref to this page */
375 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
376 BUG_ON(gnt_list_entry->gref == -ENOSPC);
377 if (info->feature_persistent)
378 grant_foreign_access(gnt_list_entry, info);
379 else {
380 /* Grant access to the GFN passed by the caller */
381 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
382 info->xbdev->otherend_id,
383 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100384 }
385
Julien Grall4f503fb2015-07-01 14:10:38 +0100386 return gnt_list_entry;
387}
388
389static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500390 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100391{
Bob Liu73716df2015-11-16 16:51:39 -0500392 struct grant *gnt_list_entry = get_free_grant(rinfo);
393 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100394
395 if (gnt_list_entry->gref != GRANT_INVALID_REF)
396 return gnt_list_entry;
397
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100398 /* Assign a gref to this page */
399 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
400 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100401 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100402 struct page *indirect_page;
403
404 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500405 BUG_ON(list_empty(&rinfo->indirect_pages));
406 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100407 struct page, lru);
408 list_del(&indirect_page->lru);
409 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100410 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100411 grant_foreign_access(gnt_list_entry, info);
412
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100413 return gnt_list_entry;
414}
415
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400416static const char *op_name(int op)
417{
418 static const char *const names[] = {
419 [BLKIF_OP_READ] = "read",
420 [BLKIF_OP_WRITE] = "write",
421 [BLKIF_OP_WRITE_BARRIER] = "barrier",
422 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
423 [BLKIF_OP_DISCARD] = "discard" };
424
425 if (op < 0 || op >= ARRAY_SIZE(names))
426 return "unknown";
427
428 if (!names[op])
429 return "reserved";
430
431 return names[op];
432}
Jan Beulich0e345822010-08-07 18:28:55 +0200433static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
434{
435 unsigned int end = minor + nr;
436 int rc;
437
438 if (end > nr_minors) {
439 unsigned long *bitmap, *old;
440
Thomas Meyerf0941482011-11-29 22:08:00 +0100441 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200442 GFP_KERNEL);
443 if (bitmap == NULL)
444 return -ENOMEM;
445
446 spin_lock(&minor_lock);
447 if (end > nr_minors) {
448 old = minors;
449 memcpy(bitmap, minors,
450 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
451 minors = bitmap;
452 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
453 } else
454 old = bitmap;
455 spin_unlock(&minor_lock);
456 kfree(old);
457 }
458
459 spin_lock(&minor_lock);
460 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900461 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200462 rc = 0;
463 } else
464 rc = -EBUSY;
465 spin_unlock(&minor_lock);
466
467 return rc;
468}
469
470static void xlbd_release_minors(unsigned int minor, unsigned int nr)
471{
472 unsigned int end = minor + nr;
473
474 BUG_ON(end > nr_minors);
475 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900476 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200477 spin_unlock(&minor_lock);
478}
479
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700480static void blkif_restart_queue_callback(void *arg)
481{
Bob Liu81f35162015-11-14 11:12:11 +0800482 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
483 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700484}
485
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700486static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800487{
488 /* We don't have real geometry info, but let's at least return
489 values consistent with the size of the device */
490 sector_t nsect = get_capacity(bd->bd_disk);
491 sector_t cylinders = nsect;
492
493 hg->heads = 0xff;
494 hg->sectors = 0x3f;
495 sector_div(cylinders, hg->heads * hg->sectors);
496 hg->cylinders = cylinders;
497 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
498 hg->cylinders = 0xffff;
499 return 0;
500}
501
Al Viroa63c8482008-03-02 10:23:47 -0500502static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200503 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200504{
Al Viroa63c8482008-03-02 10:23:47 -0500505 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200506 int i;
507
508 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
509 command, (long)argument);
510
511 switch (command) {
512 case CDROMMULTISESSION:
513 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
514 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
515 if (put_user(0, (char __user *)(argument + i)))
516 return -EFAULT;
517 return 0;
518
519 case CDROM_GET_CAPABILITY: {
520 struct gendisk *gd = info->gd;
521 if (gd->flags & GENHD_FL_CD)
522 return 0;
523 return -EINVAL;
524 }
525
526 default:
527 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
528 command);*/
529 return -EINVAL; /* same return as native Linux */
530 }
531
532 return 0;
533}
534
Julien Grall2e073962015-08-13 19:23:10 +0100535static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
536 struct request *req,
537 struct blkif_request **ring_req)
538{
539 unsigned long id;
540
541 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
542 rinfo->ring.req_prod_pvt++;
543
544 id = get_id_from_freelist(rinfo);
545 rinfo->shadow[id].request = req;
Julien Grall6cc568332015-08-13 13:13:35 +0100546 rinfo->shadow[id].status = REQ_WAITING;
547 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100548
549 (*ring_req)->u.rw.id = id;
550
551 return id;
552}
553
Bob Liu81f35162015-11-14 11:12:11 +0800554static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700555{
Bob Liu81f35162015-11-14 11:12:11 +0800556 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700557 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700558 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100559
560 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100561 id = blkif_ring_get_request(rinfo, req, &ring_req);
Julien Grall33204662015-06-29 17:35:24 +0100562
563 ring_req->operation = BLKIF_OP_DISCARD;
564 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
565 ring_req->u.discard.id = id;
566 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Christoph Hellwig288dab82016-06-09 16:00:36 +0200567 if (req_op(req) == REQ_OP_SECURE_ERASE && info->feature_secdiscard)
Julien Grall33204662015-06-29 17:35:24 +0100568 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
569 else
570 ring_req->u.discard.flag = 0;
571
Julien Grall33204662015-06-29 17:35:24 +0100572 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800573 rinfo->shadow[id].req = *ring_req;
Julien Grall33204662015-06-29 17:35:24 +0100574
575 return 0;
576}
577
Julien Grallc004a6f2015-07-22 16:44:54 +0100578struct setup_rw_req {
579 unsigned int grant_idx;
580 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800581 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100582 struct blkif_request *ring_req;
583 grant_ref_t gref_head;
584 unsigned int id;
585 /* Only used when persistent grant is used and it's a read request */
586 bool need_copy;
587 unsigned int bvec_off;
588 char *bvec_data;
Julien Grall6cc568332015-08-13 13:13:35 +0100589
590 bool require_extra_req;
591 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100592};
593
594static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
595 unsigned int len, void *data)
596{
597 struct setup_rw_req *setup = data;
598 int n, ref;
599 struct grant *gnt_list_entry;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700600 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100601 /* Convenient aliases */
602 unsigned int grant_idx = setup->grant_idx;
603 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800604 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100605 /*
606 * We always use the shadow of the first request to store the list
607 * of grant associated to the block I/O request. This made the
608 * completion more easy to handle even if the block I/O request is
609 * split.
610 */
Bob Liu81f35162015-11-14 11:12:11 +0800611 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100612
Julien Grall6cc568332015-08-13 13:13:35 +0100613 if (unlikely(setup->require_extra_req &&
614 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
615 /*
616 * We are using the second request, setup grant_idx
617 * to be the index of the segment array.
618 */
619 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
620 ring_req = setup->extra_ring_req;
621 }
622
Julien Grallc004a6f2015-07-22 16:44:54 +0100623 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
624 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
625 if (setup->segments)
626 kunmap_atomic(setup->segments);
627
628 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
Bob Liu73716df2015-11-16 16:51:39 -0500629 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100630 shadow->indirect_grants[n] = gnt_list_entry;
631 setup->segments = kmap_atomic(gnt_list_entry->page);
632 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
633 }
634
Bob Liu73716df2015-11-16 16:51:39 -0500635 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100636 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100637 /*
638 * All the grants are stored in the shadow of the first
639 * request. Therefore we have to use the global index.
640 */
641 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
Julien Grallc004a6f2015-07-22 16:44:54 +0100642
643 if (setup->need_copy) {
644 void *shared_data;
645
646 shared_data = kmap_atomic(gnt_list_entry->page);
647 /*
648 * this does not wipe data stored outside the
649 * range sg->offset..sg->offset+sg->length.
650 * Therefore, blkback *could* see data from
651 * previous requests. This is OK as long as
652 * persistent grants are shared with just one
653 * domain. It may need refactoring if this
654 * changes
655 */
656 memcpy(shared_data + offset,
657 setup->bvec_data + setup->bvec_off,
658 len);
659
660 kunmap_atomic(shared_data);
661 setup->bvec_off += len;
662 }
663
664 fsect = offset >> 9;
665 lsect = fsect + (len >> 9) - 1;
666 if (ring_req->operation != BLKIF_OP_INDIRECT) {
667 ring_req->u.rw.seg[grant_idx] =
668 (struct blkif_request_segment) {
669 .gref = ref,
670 .first_sect = fsect,
671 .last_sect = lsect };
672 } else {
673 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
674 (struct blkif_request_segment) {
675 .gref = ref,
676 .first_sect = fsect,
677 .last_sect = lsect };
678 }
679
680 (setup->grant_idx)++;
681}
682
Julien Grall6cc568332015-08-13 13:13:35 +0100683static void blkif_setup_extra_req(struct blkif_request *first,
684 struct blkif_request *second)
685{
686 uint16_t nr_segments = first->u.rw.nr_segments;
687
688 /*
689 * The second request is only present when the first request uses
690 * all its segments. It's always the continuity of the first one.
691 */
692 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
693
694 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
695 second->u.rw.sector_number = first->u.rw.sector_number +
696 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
697
698 second->u.rw.handle = first->u.rw.handle;
699 second->operation = first->operation;
700}
701
Bob Liu81f35162015-11-14 11:12:11 +0800702static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700703{
Bob Liu81f35162015-11-14 11:12:11 +0800704 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100705 struct blkif_request *ring_req, *extra_ring_req = NULL;
706 unsigned long id, extra_id = NO_ASSOCIATED_ID;
707 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100708 int i;
709 struct setup_rw_req setup = {
710 .grant_idx = 0,
711 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800712 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100713 .need_copy = rq_data_dir(req) && info->feature_persistent,
714 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200715
716 /*
717 * Used to store if we are able to queue the request by just using
718 * existing persistent grants, or if we have to get new grants,
719 * as there are not sufficiently many free.
720 */
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800721 bool new_persistent_gnts = false;
Jens Axboe9e973e62009-02-24 08:10:09 +0100722 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100723 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700724
Julien Grallc004a6f2015-07-22 16:44:54 +0100725 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200726 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
727 /*
728 * If we are using indirect segments we need to account
729 * for the indirect grefs used in the request.
730 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100731 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200732
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800733 /* Check if we have enough persistent grants to allocate a requests */
734 if (rinfo->persistent_gnts_c < max_grefs) {
735 new_persistent_gnts = true;
736
737 if (gnttab_alloc_grant_references(
738 max_grefs - rinfo->persistent_gnts_c,
739 &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200740 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800741 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200742 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800743 rinfo,
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800744 max_grefs - rinfo->persistent_gnts_c);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200745 return 1;
746 }
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800747 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700748
749 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100750 id = blkif_ring_get_request(rinfo, req, &ring_req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700751
Bob Liu81f35162015-11-14 11:12:11 +0800752 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100753 num_grant = 0;
754 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800755 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100756 num_grant += gnttab_count_grant(sg->offset, sg->length);
757
Julien Grall6cc568332015-08-13 13:13:35 +0100758 require_extra_req = info->max_indirect_segments == 0 &&
759 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
760 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
761
Bob Liu81f35162015-11-14 11:12:11 +0800762 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100763 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
764 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100765 /*
766 * The indirect operation can only be a BLKIF_OP_READ or
767 * BLKIF_OP_WRITE
768 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500769 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100770 ring_req->operation = BLKIF_OP_INDIRECT;
771 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
772 BLKIF_OP_WRITE : BLKIF_OP_READ;
773 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
774 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100775 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800776 } else {
Julien Grall33204662015-06-29 17:35:24 +0100777 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
778 ring_req->u.rw.handle = info->handle;
779 ring_req->operation = rq_data_dir(req) ?
780 BLKIF_OP_WRITE : BLKIF_OP_READ;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500781 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200782 /*
Julien Grall33204662015-06-29 17:35:24 +0100783 * Ideally we can do an unordered flush-to-disk.
784 * In case the backend onlysupports barriers, use that.
785 * A barrier request a superset of FUA, so we can
786 * implement it the same way. (It's also a FLUSH+FUA,
787 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200788 */
Mike Christiea4180902016-06-05 14:32:24 -0500789 if (info->feature_flush && info->feature_fua)
Julien Grall33204662015-06-29 17:35:24 +0100790 ring_req->operation =
791 BLKIF_OP_WRITE_BARRIER;
Mike Christiea4180902016-06-05 14:32:24 -0500792 else if (info->feature_flush)
Julien Grall33204662015-06-29 17:35:24 +0100793 ring_req->operation =
794 BLKIF_OP_FLUSH_DISKCACHE;
Mike Christiea4180902016-06-05 14:32:24 -0500795 else
Julien Grall33204662015-06-29 17:35:24 +0100796 ring_req->operation = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800797 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100798 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100799 if (unlikely(require_extra_req)) {
800 extra_id = blkif_ring_get_request(rinfo, req,
801 &extra_ring_req);
802 /*
803 * Only the first request contains the scatter-gather
804 * list.
805 */
806 rinfo->shadow[extra_id].num_sg = 0;
807
808 blkif_setup_extra_req(ring_req, extra_ring_req);
809
810 /* Link the 2 requests together */
811 rinfo->shadow[extra_id].associated_id = id;
812 rinfo->shadow[id].associated_id = extra_id;
813 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700814 }
815
Julien Grallc004a6f2015-07-22 16:44:54 +0100816 setup.ring_req = ring_req;
817 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100818
819 setup.require_extra_req = require_extra_req;
820 if (unlikely(require_extra_req))
821 setup.extra_ring_req = extra_ring_req;
822
Bob Liu81f35162015-11-14 11:12:11 +0800823 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100824 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100825
Julien Grallc004a6f2015-07-22 16:44:54 +0100826 if (setup.need_copy) {
827 setup.bvec_off = sg->offset;
828 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100829 }
830
Julien Grallc004a6f2015-07-22 16:44:54 +0100831 gnttab_foreach_grant_in_range(sg_page(sg),
832 sg->offset,
833 sg->length,
834 blkif_setup_rw_req_grant,
835 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100836
Julien Grallc004a6f2015-07-22 16:44:54 +0100837 if (setup.need_copy)
838 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100839 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100840 if (setup.segments)
841 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700842
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700843 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800844 rinfo->shadow[id].req = *ring_req;
Julien Grall6cc568332015-08-13 13:13:35 +0100845 if (unlikely(require_extra_req))
846 rinfo->shadow[extra_id].req = *extra_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700847
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800848 if (new_persistent_gnts)
Julien Grallc004a6f2015-07-22 16:44:54 +0100849 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700850
851 return 0;
852}
853
Julien Grall33204662015-06-29 17:35:24 +0100854/*
855 * Generate a Xen blkfront IO request from a blk layer request. Reads
856 * and writes are handled as expected.
857 *
858 * @req: a request struct
859 */
Bob Liu81f35162015-11-14 11:12:11 +0800860static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100861{
Bob Liu81f35162015-11-14 11:12:11 +0800862 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100863 return 1;
864
Mike Christiec2df40d2016-06-05 14:32:17 -0500865 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
Christoph Hellwig288dab82016-06-09 16:00:36 +0200866 req_op(req) == REQ_OP_SECURE_ERASE))
Bob Liu81f35162015-11-14 11:12:11 +0800867 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100868 else
Bob Liu81f35162015-11-14 11:12:11 +0800869 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100870}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700871
Bob Liu81f35162015-11-14 11:12:11 +0800872static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700873{
874 int notify;
875
Bob Liu81f35162015-11-14 11:12:11 +0800876 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700877
878 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800879 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700880}
881
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100882static inline bool blkif_request_flush_invalid(struct request *req,
883 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200884{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100885 return (blk_rq_is_passthrough(req) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500886 ((req_op(req) == REQ_OP_FLUSH) &&
Mike Christiea4180902016-06-05 14:32:24 -0500887 !info->feature_flush) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100888 ((req->cmd_flags & REQ_FUA) &&
Mike Christiea4180902016-06-05 14:32:24 -0500889 !info->feature_fua));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200890}
891
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200892static blk_status_t blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500893 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700894{
Bob Liu11659562015-11-14 11:12:13 +0800895 unsigned long flags;
Bob Liu2a6f71a2016-05-31 16:59:17 +0800896 int qid = hctx->queue_num;
897 struct blkfront_info *info = hctx->queue->queuedata;
898 struct blkfront_ring_info *rinfo = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700899
Juergen Gross4ab50af2020-03-05 16:51:29 +0100900 rinfo = get_rinfo(info, qid);
Bob Liu907c3eb2015-07-13 17:55:24 +0800901 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800902 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800903 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800904 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700905
Bob Liu81f35162015-11-14 11:12:11 +0800906 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800907 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700908
Bob Liu81f35162015-11-14 11:12:11 +0800909 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800910 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700911
Bob Liu81f35162015-11-14 11:12:11 +0800912 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800913 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200914 return BLK_STS_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700915
Bob Liu907c3eb2015-07-13 17:55:24 +0800916out_err:
Bob Liu11659562015-11-14 11:12:13 +0800917 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200918 return BLK_STS_IOERR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900919
Bob Liu907c3eb2015-07-13 17:55:24 +0800920out_busy:
Bob Liu907c3eb2015-07-13 17:55:24 +0800921 blk_mq_stop_hw_queue(hctx);
Junxiao Bi4b422cb2017-07-20 09:26:21 +0800922 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Ming Lei86ff7c22018-01-30 22:04:57 -0500923 return BLK_STS_DEV_RESOURCE;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700924}
925
Christoph Hellwig26095872017-04-20 16:03:08 +0200926static void blkif_complete_rq(struct request *rq)
927{
928 blk_mq_end_request(rq, blkif_req(rq)->error);
929}
930
Eric Biggersf363b082017-03-30 13:39:16 -0700931static const struct blk_mq_ops blkfront_mq_ops = {
Bob Liu907c3eb2015-07-13 17:55:24 +0800932 .queue_rq = blkif_queue_rq,
Christoph Hellwig26095872017-04-20 16:03:08 +0200933 .complete = blkif_complete_rq,
Bob Liu907c3eb2015-07-13 17:55:24 +0800934};
935
Bob Liu172335a2016-07-01 17:43:39 -0400936static void blkif_set_queue_limits(struct blkfront_info *info)
937{
938 struct request_queue *rq = info->rq;
939 struct gendisk *gd = info->gd;
940 unsigned int segments = info->max_indirect_segments ? :
941 BLKIF_MAX_SEGMENTS_PER_REQUEST;
942
Bart Van Assche8b904b52018-03-07 17:10:10 -0800943 blk_queue_flag_set(QUEUE_FLAG_VIRT, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400944
945 if (info->feature_discard) {
Bart Van Assche8b904b52018-03-07 17:10:10 -0800946 blk_queue_flag_set(QUEUE_FLAG_DISCARD, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400947 blk_queue_max_discard_sectors(rq, get_capacity(gd));
Roger Pau Monne7d6e01e2021-01-19 11:57:27 +0100948 rq->limits.discard_granularity = info->discard_granularity ?:
949 info->physical_sector_size;
Bob Liu172335a2016-07-01 17:43:39 -0400950 rq->limits.discard_alignment = info->discard_alignment;
951 if (info->feature_secdiscard)
Bart Van Assche8b904b52018-03-07 17:10:10 -0800952 blk_queue_flag_set(QUEUE_FLAG_SECERASE, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400953 }
954
955 /* Hard sector size and max sectors impersonate the equiv. hardware. */
956 blk_queue_logical_block_size(rq, info->sector_size);
957 blk_queue_physical_block_size(rq, info->physical_sector_size);
958 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
959
960 /* Each segment in a request is up to an aligned page in size. */
961 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
962 blk_queue_max_segment_size(rq, PAGE_SIZE);
963
964 /* Ensure a merged request will fit in a single I/O ring slot. */
965 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
966
967 /* Make sure buffer addresses are sector-aligned. */
968 blk_queue_dma_alignment(rq, 511);
Bob Liu172335a2016-07-01 17:43:39 -0400969}
970
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200971static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Bob Liu172335a2016-07-01 17:43:39 -0400972 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700973{
Jens Axboe165125e2007-07-24 09:28:11 +0200974 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800975 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700976
Bob Liu907c3eb2015-07-13 17:55:24 +0800977 memset(&info->tag_set, 0, sizeof(info->tag_set));
978 info->tag_set.ops = &blkfront_mq_ops;
Bob Liu28d949b2015-11-14 11:12:14 +0800979 info->tag_set.nr_hw_queues = info->nr_rings;
Julien Grall6cc568332015-08-13 13:13:35 +0100980 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
981 /*
982 * When indirect descriptior is not supported, the I/O request
983 * will be split between multiple request in the ring.
984 * To avoid problems when sending the request, divide by
985 * 2 the depth of the queue.
986 */
987 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
988 } else
989 info->tag_set.queue_depth = BLK_RING_SIZE(info);
Bob Liu907c3eb2015-07-13 17:55:24 +0800990 info->tag_set.numa_node = NUMA_NO_NODE;
Ming Lei56d18f62019-02-15 19:13:24 +0800991 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
Christoph Hellwig26095872017-04-20 16:03:08 +0200992 info->tag_set.cmd_size = sizeof(struct blkif_req);
Bob Liu907c3eb2015-07-13 17:55:24 +0800993 info->tag_set.driver_data = info;
994
995 if (blk_mq_alloc_tag_set(&info->tag_set))
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500996 return -EINVAL;
Bob Liu907c3eb2015-07-13 17:55:24 +0800997 rq = blk_mq_init_queue(&info->tag_set);
998 if (IS_ERR(rq)) {
999 blk_mq_free_tag_set(&info->tag_set);
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -05001000 return PTR_ERR(rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001001 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001002
Bob Liu2a6f71a2016-05-31 16:59:17 +08001003 rq->queuedata = info;
Bob Liu172335a2016-07-01 17:43:39 -04001004 info->rq = gd->queue = rq;
1005 info->gd = gd;
1006 info->sector_size = sector_size;
1007 info->physical_sector_size = physical_sector_size;
1008 blkif_set_queue_limits(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001009
1010 return 0;
1011}
1012
Mike Christiea4180902016-06-05 14:32:24 -05001013static const char *flush_info(struct blkfront_info *info)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001014{
Mike Christiea4180902016-06-05 14:32:24 -05001015 if (info->feature_flush && info->feature_fua)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001016 return "barrier: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001017 else if (info->feature_flush)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001018 return "flush diskcache: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001019 else
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001020 return "barrier or flush: disabled;";
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001021}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001022
Tejun Heo4913efe2010-09-03 11:56:16 +02001023static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001024{
Mike Christiea4180902016-06-05 14:32:24 -05001025 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
1026 info->feature_fua ? true : false);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001027 pr_info("blkfront: %s: %s %s %s %s %s\n",
Mike Christiea4180902016-06-05 14:32:24 -05001028 info->gd->disk_name, flush_info(info),
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001029 "persistent grants:", info->feature_persistent ?
1030 "enabled;" : "disabled;", "indirect descriptors:",
1031 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001032}
1033
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001034static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
1035{
1036 int major;
1037 major = BLKIF_MAJOR(vdevice);
1038 *minor = BLKIF_MINOR(vdevice);
1039 switch (major) {
1040 case XEN_IDE0_MAJOR:
1041 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1042 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1043 EMULATED_HD_DISK_MINOR_OFFSET;
1044 break;
1045 case XEN_IDE1_MAJOR:
1046 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1047 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1048 EMULATED_HD_DISK_MINOR_OFFSET;
1049 break;
1050 case XEN_SCSI_DISK0_MAJOR:
1051 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1052 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1053 break;
1054 case XEN_SCSI_DISK1_MAJOR:
1055 case XEN_SCSI_DISK2_MAJOR:
1056 case XEN_SCSI_DISK3_MAJOR:
1057 case XEN_SCSI_DISK4_MAJOR:
1058 case XEN_SCSI_DISK5_MAJOR:
1059 case XEN_SCSI_DISK6_MAJOR:
1060 case XEN_SCSI_DISK7_MAJOR:
1061 *offset = (*minor / PARTS_PER_DISK) +
1062 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1063 EMULATED_SD_DISK_NAME_OFFSET;
1064 *minor = *minor +
1065 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1066 EMULATED_SD_DISK_MINOR_OFFSET;
1067 break;
1068 case XEN_SCSI_DISK8_MAJOR:
1069 case XEN_SCSI_DISK9_MAJOR:
1070 case XEN_SCSI_DISK10_MAJOR:
1071 case XEN_SCSI_DISK11_MAJOR:
1072 case XEN_SCSI_DISK12_MAJOR:
1073 case XEN_SCSI_DISK13_MAJOR:
1074 case XEN_SCSI_DISK14_MAJOR:
1075 case XEN_SCSI_DISK15_MAJOR:
1076 *offset = (*minor / PARTS_PER_DISK) +
1077 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1078 EMULATED_SD_DISK_NAME_OFFSET;
1079 *minor = *minor +
1080 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1081 EMULATED_SD_DISK_MINOR_OFFSET;
1082 break;
1083 case XENVBD_MAJOR:
1084 *offset = *minor / PARTS_PER_DISK;
1085 break;
1086 default:
1087 printk(KERN_WARNING "blkfront: your disk configuration is "
1088 "incorrect, please use an xvd device instead\n");
1089 return -ENODEV;
1090 }
1091 return 0;
1092}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001093
Jan Beuliche77c78c2012-04-05 16:37:22 +01001094static char *encode_disk_name(char *ptr, unsigned int n)
1095{
1096 if (n >= 26)
1097 ptr = encode_disk_name(ptr, n / 26 - 1);
1098 *ptr = 'a' + n % 26;
1099 return ptr + 1;
1100}
1101
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001102static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1103 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001104 u16 vdisk_info, u16 sector_size,
1105 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001106{
1107 struct gendisk *gd;
1108 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001109 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001110 unsigned int offset;
1111 int minor;
1112 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001113 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001114
1115 BUG_ON(info->gd != NULL);
1116 BUG_ON(info->rq != NULL);
1117
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001118 if ((info->vdevice>>EXT_SHIFT) > 1) {
1119 /* this is above the extended range; something is wrong */
1120 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1121 return -ENODEV;
1122 }
1123
1124 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001125 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1126 if (err)
Nathan Chancellor589b7282019-12-09 13:14:44 -07001127 return err;
1128 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001129 } else {
1130 minor = BLKIF_MINOR_EXT(info->vdevice);
1131 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001132 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001133 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001134 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1135 "emulated IDE disks,\n\t choose an xvd device name"
1136 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001137 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001138 if (minor >> MINORBITS) {
1139 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1140 info->vdevice, minor);
1141 return -ENODEV;
1142 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001143
1144 if ((minor % nr_parts) == 0)
1145 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001146
Jan Beulich0e345822010-08-07 18:28:55 +02001147 err = xlbd_reserve_minors(minor, nr_minors);
1148 if (err)
1149 goto out;
1150 err = -ENODEV;
1151
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001152 gd = alloc_disk(nr_minors);
1153 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +02001154 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001155
Jan Beuliche77c78c2012-04-05 16:37:22 +01001156 strcpy(gd->disk_name, DEV_NAME);
1157 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1158 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1159 if (nr_minors > 1)
1160 *ptr = 0;
1161 else
1162 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1163 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001164
1165 gd->major = XENVBD_MAJOR;
1166 gd->first_minor = minor;
1167 gd->fops = &xlvbd_block_fops;
1168 gd->private_data = info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001169 set_capacity(gd, capacity);
1170
Bob Liu172335a2016-07-01 17:43:39 -04001171 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001172 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001173 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001174 }
1175
Tejun Heo4913efe2010-09-03 11:56:16 +02001176 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001177
1178 if (vdisk_info & VDISK_READONLY)
1179 set_disk_ro(gd, 1);
1180
1181 if (vdisk_info & VDISK_REMOVABLE)
1182 gd->flags |= GENHD_FL_REMOVABLE;
1183
1184 if (vdisk_info & VDISK_CDROM)
1185 gd->flags |= GENHD_FL_CD;
1186
1187 return 0;
1188
Jan Beulich0e345822010-08-07 18:28:55 +02001189 release:
1190 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001191 out:
1192 return err;
1193}
1194
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001195static void xlvbd_release_gendisk(struct blkfront_info *info)
1196{
Bob Liu3df0e502015-11-14 11:12:12 +08001197 unsigned int minor, nr_minors, i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001198 struct blkfront_ring_info *rinfo;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001199
1200 if (info->rq == NULL)
1201 return;
1202
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001203 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001204 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001205
Juergen Gross4ab50af2020-03-05 16:51:29 +01001206 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001207 /* No more gnttab callback work. */
1208 gnttab_cancel_free_callback(&rinfo->callback);
1209
1210 /* Flush gnttab callback work. Must be done with no locks held. */
1211 flush_work(&rinfo->work);
1212 }
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001213
1214 del_gendisk(info->gd);
1215
1216 minor = info->gd->first_minor;
1217 nr_minors = info->gd->minors;
1218 xlbd_release_minors(minor, nr_minors);
1219
1220 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001221 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001222 info->rq = NULL;
1223
1224 put_disk(info->gd);
1225 info->gd = NULL;
1226}
1227
Bob Liu11659562015-11-14 11:12:13 +08001228/* Already hold rinfo->ring_lock. */
1229static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001230{
Bob Liu81f35162015-11-14 11:12:11 +08001231 if (!RING_FULL(&rinfo->ring))
1232 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001233}
1234
Bob Liu11659562015-11-14 11:12:13 +08001235static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1236{
1237 unsigned long flags;
1238
1239 spin_lock_irqsave(&rinfo->ring_lock, flags);
1240 kick_pending_request_queues_locked(rinfo);
1241 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1242}
1243
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001244static void blkif_restart_queue(struct work_struct *work)
1245{
Bob Liu81f35162015-11-14 11:12:11 +08001246 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001247
Bob Liu81f35162015-11-14 11:12:11 +08001248 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1249 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001250}
1251
Bob Liu3df0e502015-11-14 11:12:12 +08001252static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001253{
Bob Liu73716df2015-11-16 16:51:39 -05001254 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001255 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001256 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001257
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001258 /*
1259 * Remove indirect pages, this only happens when using indirect
1260 * descriptors but not persistent grants
1261 */
Bob Liu81f35162015-11-14 11:12:11 +08001262 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001263 struct page *indirect_page, *n;
1264
1265 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001266 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001267 list_del(&indirect_page->lru);
1268 __free_page(indirect_page);
1269 }
1270 }
1271
Bob Liu73716df2015-11-16 16:51:39 -05001272 /* Remove all persistent grants. */
1273 if (!list_empty(&rinfo->grants)) {
1274 list_for_each_entry_safe(persistent_gnt, n,
1275 &rinfo->grants, node) {
1276 list_del(&persistent_gnt->node);
1277 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1278 gnttab_end_foreign_access(persistent_gnt->gref,
1279 0, 0UL);
1280 rinfo->persistent_gnts_c--;
1281 }
1282 if (info->feature_persistent)
1283 __free_page(persistent_gnt->page);
1284 kfree(persistent_gnt);
1285 }
1286 }
1287 BUG_ON(rinfo->persistent_gnts_c != 0);
1288
Bob Liu86839c52015-06-03 13:40:03 +08001289 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001290 /*
1291 * Clear persistent grants present in requests already
1292 * on the shared ring
1293 */
Bob Liu81f35162015-11-14 11:12:11 +08001294 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001295 goto free_shadow;
1296
Bob Liu81f35162015-11-14 11:12:11 +08001297 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1298 rinfo->shadow[i].req.u.indirect.nr_segments :
1299 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001300 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001301 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001302 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001303 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001304 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001305 kfree(persistent_gnt);
1306 }
1307
Bob Liu81f35162015-11-14 11:12:11 +08001308 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001309 /*
1310 * If this is not an indirect operation don't try to
1311 * free indirect segments
1312 */
1313 goto free_shadow;
1314
1315 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001316 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001317 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001318 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001319 kfree(persistent_gnt);
1320 }
1321
1322free_shadow:
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001323 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08001324 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001325 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08001326 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001327 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08001328 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001329 }
1330
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001331 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001332 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001333
1334 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001335 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001336
1337 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001338 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001339 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1340 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1341 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001342 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001343 }
Bob Liu6c647b02016-07-01 15:45:57 -04001344 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE));
Bob Liu81f35162015-11-14 11:12:11 +08001345 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001346
Bob Liu81f35162015-11-14 11:12:11 +08001347 if (rinfo->irq)
1348 unbind_from_irqhandler(rinfo->irq, rinfo);
1349 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001350}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001351
Bob Liu3df0e502015-11-14 11:12:12 +08001352static void blkif_free(struct blkfront_info *info, int suspend)
1353{
Bob Liu3df0e502015-11-14 11:12:12 +08001354 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001355 struct blkfront_ring_info *rinfo;
Bob Liu3df0e502015-11-14 11:12:12 +08001356
1357 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001358 info->connected = suspend ?
1359 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1360 /* No more blkif_request(). */
1361 if (info->rq)
1362 blk_mq_stop_hw_queues(info->rq);
1363
Juergen Gross4ab50af2020-03-05 16:51:29 +01001364 for_each_rinfo(info, rinfo, i)
1365 blkif_free_ring(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001366
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001367 kvfree(info->rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001368 info->rinfo = NULL;
1369 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001370}
1371
Julien Grallc004a6f2015-07-22 16:44:54 +01001372struct copy_from_grant {
1373 const struct blk_shadow *s;
1374 unsigned int grant_idx;
1375 unsigned int bvec_offset;
1376 char *bvec_data;
1377};
1378
1379static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1380 unsigned int len, void *data)
1381{
1382 struct copy_from_grant *info = data;
1383 char *shared_data;
1384 /* Convenient aliases */
1385 const struct blk_shadow *s = info->s;
1386
1387 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1388
1389 memcpy(info->bvec_data + info->bvec_offset,
1390 shared_data + offset, len);
1391
1392 info->bvec_offset += len;
1393 info->grant_idx++;
1394
1395 kunmap_atomic(shared_data);
1396}
1397
Julien Grall6cc568332015-08-13 13:13:35 +01001398static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1399{
1400 switch (rsp)
1401 {
1402 case BLKIF_RSP_OKAY:
1403 return REQ_DONE;
1404 case BLKIF_RSP_EOPNOTSUPP:
1405 return REQ_EOPNOTSUPP;
1406 case BLKIF_RSP_ERROR:
Julien Grall6cc568332015-08-13 13:13:35 +01001407 default:
1408 return REQ_ERROR;
1409 }
1410}
1411
1412/*
1413 * Get the final status of the block request based on two ring response
1414 */
1415static int blkif_get_final_status(enum blk_req_status s1,
1416 enum blk_req_status s2)
1417{
1418 BUG_ON(s1 == REQ_WAITING);
1419 BUG_ON(s2 == REQ_WAITING);
1420
1421 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1422 return BLKIF_RSP_ERROR;
1423 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1424 return BLKIF_RSP_EOPNOTSUPP;
1425 return BLKIF_RSP_OKAY;
1426}
1427
1428static bool blkif_completion(unsigned long *id,
1429 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001430 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001431{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001432 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001433 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001434 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001435 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001436 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001437 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001438 .grant_idx = 0,
1439 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001440
Julien Grallc004a6f2015-07-22 16:44:54 +01001441 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001442 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001443
1444 /* The I/O request may be split in two. */
1445 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1446 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1447
1448 /* Keep the status of the current response in shadow. */
1449 s->status = blkif_rsp_to_req_status(bret->status);
1450
1451 /* Wait the second response if not yet here. */
1452 if (s2->status == REQ_WAITING)
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001453 return false;
Julien Grall6cc568332015-08-13 13:13:35 +01001454
1455 bret->status = blkif_get_final_status(s->status,
1456 s2->status);
1457
1458 /*
1459 * All the grants is stored in the first shadow in order
1460 * to make the completion code simpler.
1461 */
1462 num_grant += s2->req.u.rw.nr_segments;
1463
1464 /*
1465 * The two responses may not come in order. Only the
1466 * first request will store the scatter-gather list.
1467 */
1468 if (s2->num_sg != 0) {
1469 /* Update "id" with the ID of the first response. */
1470 *id = s->associated_id;
1471 s = s2;
1472 }
1473
1474 /*
1475 * We don't need anymore the second request, so recycling
1476 * it now.
1477 */
1478 if (add_id_to_freelist(rinfo, s->associated_id))
1479 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1480 info->gd->disk_name, s->associated_id);
1481 }
1482
1483 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001484 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001485
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001486 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001487 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001488 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001489
1490 data.bvec_offset = sg->offset;
1491 data.bvec_data = kmap_atomic(sg_page(sg));
1492
1493 gnttab_foreach_grant_in_range(sg_page(sg),
1494 sg->offset,
1495 sg->length,
1496 blkif_copy_from_grant,
1497 &data);
1498
1499 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001500 }
1501 }
1502 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001503 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001504 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1505 /*
1506 * If the grant is still mapped by the backend (the
1507 * backend has chosen to make this grant persistent)
1508 * we add it at the head of the list, so it will be
1509 * reused first.
1510 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001511 if (!info->feature_persistent)
1512 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1513 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001514 list_add(&s->grants_used[i]->node, &rinfo->grants);
1515 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001516 } else {
1517 /*
1518 * If the grant is not mapped by the backend we end the
1519 * foreign access and add it to the tail of the list,
1520 * so it will not be picked again unless we run out of
1521 * persistent grants.
1522 */
1523 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1524 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001525 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001526 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001527 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001528 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001529 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001530 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001531 if (!info->feature_persistent)
1532 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1533 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001534 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1535 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001536 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001537 struct page *indirect_page;
1538
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001539 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001540 /*
1541 * Add the used indirect page back to the list of
1542 * available pages for indirect grefs.
1543 */
Bob Liu7b076752015-07-22 14:40:09 +08001544 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001545 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001546 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001547 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001548 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001549 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001550 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001551 }
1552 }
Julien Grall6cc568332015-08-13 13:13:35 +01001553
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001554 return true;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001555}
1556
1557static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1558{
1559 struct request *req;
1560 struct blkif_response *bret;
1561 RING_IDX i, rp;
1562 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001563 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1564 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001565
Bob Liu11659562015-11-14 11:12:13 +08001566 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001567 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001568
Bob Liu11659562015-11-14 11:12:13 +08001569 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001570 again:
Bob Liu81f35162015-11-14 11:12:11 +08001571 rp = rinfo->ring.sring->rsp_prod;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001572 rmb(); /* Ensure we see queued responses up to 'rp'. */
1573
Bob Liu81f35162015-11-14 11:12:11 +08001574 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001575 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001576
Bob Liu81f35162015-11-14 11:12:11 +08001577 bret = RING_GET_RESPONSE(&rinfo->ring, i);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001578 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001579 /*
1580 * The backend has messed up and given us an id that we would
1581 * never have given to it (we stamp it up to BLK_RING_SIZE -
1582 * look in get_id_from_freelist.
1583 */
Bob Liu86839c52015-06-03 13:40:03 +08001584 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001585 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1586 info->gd->disk_name, op_name(bret->operation), id);
1587 /* We can't safely get the 'struct request' as
1588 * the id is busted. */
1589 continue;
1590 }
Bob Liu81f35162015-11-14 11:12:11 +08001591 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001592
Julien Grall6cc568332015-08-13 13:13:35 +01001593 if (bret->operation != BLKIF_OP_DISCARD) {
1594 /*
1595 * We may need to wait for an extra response if the
1596 * I/O request is split in 2
1597 */
1598 if (!blkif_completion(&id, rinfo, bret))
1599 continue;
1600 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001601
Bob Liu81f35162015-11-14 11:12:11 +08001602 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001603 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1604 info->gd->disk_name, op_name(bret->operation), id);
1605 continue;
1606 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001607
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001608 if (bret->status == BLKIF_RSP_OKAY)
1609 blkif_req(req)->error = BLK_STS_OK;
1610 else
1611 blkif_req(req)->error = BLK_STS_IOERR;
1612
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001613 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001614 case BLKIF_OP_DISCARD:
1615 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1616 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001617 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1618 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001619 blkif_req(req)->error = BLK_STS_NOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001620 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001621 info->feature_secdiscard = 0;
Bart Van Assche8b904b52018-03-07 17:10:10 -08001622 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
1623 blk_queue_flag_clear(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001624 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001625 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001626 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001627 case BLKIF_OP_WRITE_BARRIER:
1628 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001629 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1630 info->gd->disk_name, op_name(bret->operation));
Bart Van Assche31c4ccc2017-07-21 19:11:10 +02001631 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001632 }
1633 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001634 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001635 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1636 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001637 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001638 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001639 if (unlikely(blkif_req(req)->error)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001640 if (blkif_req(req)->error == BLK_STS_NOTSUPP)
1641 blkif_req(req)->error = BLK_STS_OK;
Mike Christiea4180902016-06-05 14:32:24 -05001642 info->feature_fua = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001643 info->feature_flush = 0;
1644 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001645 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001646 fallthrough;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001647 case BLKIF_OP_READ:
1648 case BLKIF_OP_WRITE:
1649 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1650 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1651 "request: %x\n", bret->status);
1652
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001653 break;
1654 default:
1655 BUG();
1656 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001657
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001658 if (likely(!blk_should_fake_timeout(req->q)))
1659 blk_mq_complete_request(req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001660 }
1661
Bob Liu81f35162015-11-14 11:12:11 +08001662 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001663
Bob Liu81f35162015-11-14 11:12:11 +08001664 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001665 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001666 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001667 if (more_to_do)
1668 goto again;
1669 } else
Bob Liu81f35162015-11-14 11:12:11 +08001670 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001671
Bob Liu11659562015-11-14 11:12:13 +08001672 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001673
Bob Liu11659562015-11-14 11:12:13 +08001674 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001675
1676 return IRQ_HANDLED;
1677}
1678
1679
1680static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001681 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001682{
1683 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001684 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001685 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001686 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001687 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001688
Bob Liu86839c52015-06-03 13:40:03 +08001689 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001690 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001691
Bob Liu86839c52015-06-03 13:40:03 +08001692 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1693 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001694 if (!sring) {
1695 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1696 return -ENOMEM;
1697 }
1698 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001699 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001700
Bob Liu81f35162015-11-14 11:12:11 +08001701 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001702 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001703 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001704 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001705 goto fail;
1706 }
Bob Liu86839c52015-06-03 13:40:03 +08001707 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001708 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001709
Bob Liu81f35162015-11-14 11:12:11 +08001710 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001711 if (err)
1712 goto fail;
1713
Bob Liu81f35162015-11-14 11:12:11 +08001714 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1715 "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001716 if (err <= 0) {
1717 xenbus_dev_fatal(dev, err,
1718 "bind_evtchn_to_irqhandler failed");
1719 goto fail;
1720 }
Bob Liu81f35162015-11-14 11:12:11 +08001721 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001722
1723 return 0;
1724fail:
1725 blkif_free(info, 0);
1726 return err;
1727}
1728
Bob Liu28d949b2015-11-14 11:12:14 +08001729/*
1730 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1731 * ring buffer may have multi pages depending on ->nr_ring_pages.
1732 */
1733static int write_per_ring_nodes(struct xenbus_transaction xbt,
1734 struct blkfront_ring_info *rinfo, const char *dir)
1735{
1736 int err;
1737 unsigned int i;
1738 const char *message = NULL;
1739 struct blkfront_info *info = rinfo->dev_info;
1740
1741 if (info->nr_ring_pages == 1) {
1742 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1743 if (err) {
1744 message = "writing ring-ref";
1745 goto abort_transaction;
1746 }
1747 } else {
1748 for (i = 0; i < info->nr_ring_pages; i++) {
1749 char ring_ref_name[RINGREF_NAME_LEN];
1750
1751 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1752 err = xenbus_printf(xbt, dir, ring_ref_name,
1753 "%u", rinfo->ring_ref[i]);
1754 if (err) {
1755 message = "writing ring-ref";
1756 goto abort_transaction;
1757 }
1758 }
1759 }
1760
1761 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1762 if (err) {
1763 message = "writing event-channel";
1764 goto abort_transaction;
1765 }
1766
1767 return 0;
1768
1769abort_transaction:
1770 xenbus_transaction_end(xbt, 1);
1771 if (message)
1772 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1773
1774 return err;
1775}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001776
Juergen Grossa46b5362018-08-13 16:01:11 +02001777static void free_info(struct blkfront_info *info)
1778{
1779 list_del(&info->info_list);
1780 kfree(info);
1781}
1782
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001783/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001784static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001785 struct blkfront_info *info)
1786{
1787 const char *message = NULL;
1788 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001789 int err;
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001790 unsigned int i, max_page_order;
1791 unsigned int ring_page_order;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001792 struct blkfront_ring_info *rinfo;
Bob Liu86839c52015-06-03 13:40:03 +08001793
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001794 if (!info)
1795 return -ENODEV;
1796
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001797 max_page_order = xenbus_read_unsigned(info->xbdev->otherend,
1798 "max-ring-page-order", 0);
1799 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1800 info->nr_ring_pages = 1 << ring_page_order;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001801
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001802 err = negotiate_mq(info);
1803 if (err)
1804 goto destroy_blkring;
1805
Juergen Gross4ab50af2020-03-05 16:51:29 +01001806 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001807 /* Create shared ring, alloc event channel. */
1808 err = setup_blkring(dev, rinfo);
1809 if (err)
1810 goto destroy_blkring;
1811 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001812
1813again:
1814 err = xenbus_transaction_start(&xbt);
1815 if (err) {
1816 xenbus_dev_fatal(dev, err, "starting transaction");
1817 goto destroy_blkring;
1818 }
1819
Bob Liu28d949b2015-11-14 11:12:14 +08001820 if (info->nr_ring_pages > 1) {
1821 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1822 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001823 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001824 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001825 goto abort_transaction;
1826 }
Bob Liu28d949b2015-11-14 11:12:14 +08001827 }
1828
1829 /* We already got the number of queues/rings in _probe */
1830 if (info->nr_rings == 1) {
Juergen Gross4ab50af2020-03-05 16:51:29 +01001831 err = write_per_ring_nodes(xbt, info->rinfo, dev->nodename);
Bob Liu28d949b2015-11-14 11:12:14 +08001832 if (err)
1833 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001834 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001835 char *path;
1836 size_t pathsize;
1837
1838 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1839 info->nr_rings);
1840 if (err) {
1841 message = "writing multi-queue-num-queues";
1842 goto abort_transaction;
1843 }
1844
1845 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1846 path = kmalloc(pathsize, GFP_KERNEL);
1847 if (!path) {
1848 err = -ENOMEM;
1849 message = "ENOMEM while writing ring references";
1850 goto abort_transaction;
1851 }
1852
Juergen Gross4ab50af2020-03-05 16:51:29 +01001853 for_each_rinfo(info, rinfo, i) {
Bob Liu28d949b2015-11-14 11:12:14 +08001854 memset(path, 0, pathsize);
1855 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
Juergen Gross4ab50af2020-03-05 16:51:29 +01001856 err = write_per_ring_nodes(xbt, rinfo, path);
Bob Liu28d949b2015-11-14 11:12:14 +08001857 if (err) {
1858 kfree(path);
1859 goto destroy_blkring;
1860 }
1861 }
1862 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001863 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001864 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1865 XEN_IO_PROTO_ABI_NATIVE);
1866 if (err) {
1867 message = "writing protocol";
1868 goto abort_transaction;
1869 }
SeongJae Park74a85242020-09-23 08:18:40 +02001870 err = xenbus_printf(xbt, dev->nodename, "feature-persistent", "%u",
1871 info->feature_persistent);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001872 if (err)
1873 dev_warn(&dev->dev,
1874 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001875
1876 err = xenbus_transaction_end(xbt, 0);
1877 if (err) {
1878 if (err == -EAGAIN)
1879 goto again;
1880 xenbus_dev_fatal(dev, err, "completing transaction");
1881 goto destroy_blkring;
1882 }
1883
Juergen Gross4ab50af2020-03-05 16:51:29 +01001884 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001885 unsigned int j;
Bob Liu3df0e502015-11-14 11:12:12 +08001886
1887 for (j = 0; j < BLK_RING_SIZE(info); j++)
1888 rinfo->shadow[j].req.u.rw.id = j + 1;
1889 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1890 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001891 xenbus_switch_state(dev, XenbusStateInitialised);
1892
1893 return 0;
1894
1895 abort_transaction:
1896 xenbus_transaction_end(xbt, 1);
1897 if (message)
1898 xenbus_dev_fatal(dev, err, "%s", message);
1899 destroy_blkring:
1900 blkif_free(info, 0);
Bob Liu3df0e502015-11-14 11:12:12 +08001901
Juergen Grossa46b5362018-08-13 16:01:11 +02001902 mutex_lock(&blkfront_mutex);
1903 free_info(info);
1904 mutex_unlock(&blkfront_mutex);
1905
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05001906 dev_set_drvdata(&dev->dev, NULL);
1907
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001908 return err;
1909}
1910
Bob Liu3db70a82015-11-25 17:52:55 -05001911static int negotiate_mq(struct blkfront_info *info)
1912{
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001913 unsigned int backend_max_queues;
Bob Liu3db70a82015-11-25 17:52:55 -05001914 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001915 struct blkfront_ring_info *rinfo;
Bob Liu3db70a82015-11-25 17:52:55 -05001916
1917 BUG_ON(info->nr_rings);
1918
1919 /* Check if backend supports multiple queues. */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001920 backend_max_queues = xenbus_read_unsigned(info->xbdev->otherend,
1921 "multi-queue-max-queues", 1);
Bob Liu3db70a82015-11-25 17:52:55 -05001922 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1923 /* We need at least one ring. */
1924 if (!info->nr_rings)
1925 info->nr_rings = 1;
1926
Juergen Gross4ab50af2020-03-05 16:51:29 +01001927 info->rinfo_size = struct_size(info->rinfo, shadow,
1928 BLK_RING_SIZE(info));
1929 info->rinfo = kvcalloc(info->nr_rings, info->rinfo_size, GFP_KERNEL);
Bob Liu3db70a82015-11-25 17:52:55 -05001930 if (!info->rinfo) {
1931 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
Manjunath Patil6cc4a082018-10-30 09:49:21 -07001932 info->nr_rings = 0;
Bob Liu3db70a82015-11-25 17:52:55 -05001933 return -ENOMEM;
1934 }
1935
Juergen Gross4ab50af2020-03-05 16:51:29 +01001936 for_each_rinfo(info, rinfo, i) {
Bob Liu3db70a82015-11-25 17:52:55 -05001937 INIT_LIST_HEAD(&rinfo->indirect_pages);
1938 INIT_LIST_HEAD(&rinfo->grants);
1939 rinfo->dev_info = info;
1940 INIT_WORK(&rinfo->work, blkif_restart_queue);
1941 spin_lock_init(&rinfo->ring_lock);
1942 }
1943 return 0;
1944}
SeongJae Park74a85242020-09-23 08:18:40 +02001945
1946/* Enable the persistent grants feature. */
1947static bool feature_persistent = true;
1948module_param(feature_persistent, bool, 0644);
1949MODULE_PARM_DESC(feature_persistent,
1950 "Enables the persistent grants feature");
1951
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001952/**
1953 * Entry point to this code when a new device is created. Allocate the basic
1954 * structures and the ring buffer for communication with the backend, and
1955 * inform the backend of the appropriate details for those. Switch to
1956 * Initialised state.
1957 */
1958static int blkfront_probe(struct xenbus_device *dev,
1959 const struct xenbus_device_id *id)
1960{
Bob Liu86839c52015-06-03 13:40:03 +08001961 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001962 struct blkfront_info *info;
1963
1964 /* FIXME: Use dynamic device id if this is not set. */
1965 err = xenbus_scanf(XBT_NIL, dev->nodename,
1966 "virtual-device", "%i", &vdevice);
1967 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001968 /* go looking in the extended area instead */
1969 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1970 "%i", &vdevice);
1971 if (err != 1) {
1972 xenbus_dev_fatal(dev, err, "reading virtual-device");
1973 return err;
1974 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001975 }
1976
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001977 if (xen_hvm_domain()) {
1978 char *type;
1979 int len;
1980 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001981 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001982 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001983
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001984 if (!VDEV_IS_EXTENDED(vdevice))
1985 major = BLKIF_MAJOR(vdevice);
1986 else
1987 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001988
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001989 if (major != XENVBD_MAJOR) {
1990 printk(KERN_INFO
1991 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001992 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001993 return -ENODEV;
1994 }
1995 }
1996 /* do not create a PV cdrom device if we are an HVM guest */
1997 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1998 if (IS_ERR(type))
1999 return -ENODEV;
2000 if (strncmp(type, "cdrom", 5) == 0) {
2001 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01002002 return -ENODEV;
2003 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01002004 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01002005 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002006 info = kzalloc(sizeof(*info), GFP_KERNEL);
2007 if (!info) {
2008 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
2009 return -ENOMEM;
2010 }
2011
Bob Liu28d949b2015-11-14 11:12:14 +08002012 info->xbdev = dev;
Bob Liu81f35162015-11-14 11:12:11 +08002013
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002014 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002015 info->vdevice = vdevice;
2016 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002017
SeongJae Park74a85242020-09-23 08:18:40 +02002018 info->feature_persistent = feature_persistent;
2019
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020 /* Front end dir is a number, which is used as the id. */
2021 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002022 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002023
Juergen Grossa46b5362018-08-13 16:01:11 +02002024 mutex_lock(&blkfront_mutex);
2025 list_add(&info->info_list, &info_list);
2026 mutex_unlock(&blkfront_mutex);
2027
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002028 return 0;
2029}
2030
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002031static int blkif_recover(struct blkfront_info *info)
2032{
NeilBrown4559fa52017-06-18 14:38:59 +10002033 unsigned int r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002034 struct request *req, *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002035 int rc;
NeilBrown4559fa52017-06-18 14:38:59 +10002036 struct bio *bio;
2037 unsigned int segs;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002038 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002039
Bob Liu3df0e502015-11-14 11:12:12 +08002040 blkfront_gather_backend_features(info);
Bob Liu172335a2016-07-01 17:43:39 -04002041 /* Reset limits changed by blk_mq_update_nr_hw_queues(). */
2042 blkif_set_queue_limits(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002043 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liu6c647b02016-07-01 15:45:57 -04002044 blk_queue_max_segments(info->rq, segs / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002045
Juergen Gross4ab50af2020-03-05 16:51:29 +01002046 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002047 rc = blkfront_setup_indirect(rinfo);
Bob Liu7b427a52016-06-27 16:33:24 +08002048 if (rc)
Bob Liu3df0e502015-11-14 11:12:12 +08002049 return rc;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002050 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002051 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2052
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002053 /* Now safe for us to use the shared ring */
2054 info->connected = BLKIF_STATE_CONNECTED;
2055
Juergen Gross4ab50af2020-03-05 16:51:29 +01002056 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002057 /* Kick any other new requests queued since we resumed */
2058 kick_pending_request_queues(rinfo);
2059 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002060
Bob Liu7b427a52016-06-27 16:33:24 +08002061 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002062 /* Requeue pending requests (flush or discard) */
2063 list_del_init(&req->queuelist);
2064 BUG_ON(req->nr_phys_segments > segs);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07002065 blk_mq_requeue_request(req, false);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002066 }
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07002067 blk_mq_start_stopped_hw_queues(info->rq, true);
Bob Liu907c3eb2015-07-13 17:55:24 +08002068 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002069
Bob Liu7b427a52016-06-27 16:33:24 +08002070 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002071 /* Traverse the list of pending bios and re-queue them */
Mike Christie4e49ea42016-06-05 14:31:41 -05002072 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002073 }
2074
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002075 return 0;
2076}
2077
2078/**
2079 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2080 * driver restart. We tear down our blkif structure and recreate it, but
2081 * leave the device-layer structures intact so that this is transparent to the
2082 * rest of the kernel.
2083 */
2084static int blkfront_resume(struct xenbus_device *dev)
2085{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002086 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002087 int err = 0;
Bob Liu7b427a52016-06-27 16:33:24 +08002088 unsigned int i, j;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002089 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002090
2091 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2092
Bob Liu7b427a52016-06-27 16:33:24 +08002093 bio_list_init(&info->bio_list);
2094 INIT_LIST_HEAD(&info->requests);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002095 for_each_rinfo(info, rinfo, i) {
Bob Liu7b427a52016-06-27 16:33:24 +08002096 struct bio_list merge_bio;
2097 struct blk_shadow *shadow = rinfo->shadow;
2098
2099 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2100 /* Not in use? */
2101 if (!shadow[j].request)
2102 continue;
2103
2104 /*
2105 * Get the bios in the request so we can re-queue them.
2106 */
Munehisa Kamatab15bd8c2017-08-09 15:31:40 -07002107 if (req_op(shadow[j].request) == REQ_OP_FLUSH ||
2108 req_op(shadow[j].request) == REQ_OP_DISCARD ||
2109 req_op(shadow[j].request) == REQ_OP_SECURE_ERASE ||
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002110 shadow[j].request->cmd_flags & REQ_FUA) {
Bob Liu7b427a52016-06-27 16:33:24 +08002111 /*
2112 * Flush operations don't contain bios, so
2113 * we need to requeue the whole request
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002114 *
2115 * XXX: but this doesn't make any sense for a
2116 * write with the FUA flag set..
Bob Liu7b427a52016-06-27 16:33:24 +08002117 */
2118 list_add(&shadow[j].request->queuelist, &info->requests);
2119 continue;
2120 }
2121 merge_bio.head = shadow[j].request->bio;
2122 merge_bio.tail = shadow[j].request->biotail;
2123 bio_list_merge(&info->bio_list, &merge_bio);
2124 shadow[j].request->bio = NULL;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002125 blk_mq_end_request(shadow[j].request, BLK_STS_OK);
Bob Liu7b427a52016-06-27 16:33:24 +08002126 }
2127 }
2128
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002129 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2130
Ian Campbell203fd612009-12-04 15:33:54 +00002131 err = talk_to_blkback(dev, info);
Bob Liu2a6f71a2016-05-31 16:59:17 +08002132 if (!err)
2133 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002134
2135 /*
2136 * We have to wait for the backend to switch to
2137 * connected state, since we want to read which
2138 * features it supports.
2139 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002140
2141 return err;
2142}
2143
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002144static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002145{
2146 struct xenbus_device *xbdev = info->xbdev;
2147 struct block_device *bdev = NULL;
2148
2149 mutex_lock(&info->mutex);
2150
2151 if (xbdev->state == XenbusStateClosing) {
2152 mutex_unlock(&info->mutex);
2153 return;
2154 }
2155
2156 if (info->gd)
2157 bdev = bdget_disk(info->gd, 0);
2158
2159 mutex_unlock(&info->mutex);
2160
2161 if (!bdev) {
2162 xenbus_frontend_closed(xbdev);
2163 return;
2164 }
2165
2166 mutex_lock(&bdev->bd_mutex);
2167
Daniel Stodden7b32d102010-04-30 22:01:23 +00002168 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002169 xenbus_dev_error(xbdev, -EBUSY,
2170 "Device in use; refusing to close");
2171 xenbus_switch_state(xbdev, XenbusStateClosing);
2172 } else {
2173 xlvbd_release_gendisk(info);
2174 xenbus_frontend_closed(xbdev);
2175 }
2176
2177 mutex_unlock(&bdev->bd_mutex);
2178 bdput(bdev);
2179}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002180
Li Dongyanged30bf32011-09-01 18:39:09 +08002181static void blkfront_setup_discard(struct blkfront_info *info)
2182{
Olaf Hering1c8cad62014-05-21 16:32:40 +02002183 info->feature_discard = 1;
Roger Pau Monne7d6e01e2021-01-19 11:57:27 +01002184 info->discard_granularity = xenbus_read_unsigned(info->xbdev->otherend,
2185 "discard-granularity",
2186 0);
2187 info->discard_alignment = xenbus_read_unsigned(info->xbdev->otherend,
2188 "discard-alignment", 0);
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002189 info->feature_secdiscard =
2190 !!xenbus_read_unsigned(info->xbdev->otherend, "discard-secure",
2191 0);
Li Dongyanged30bf32011-09-01 18:39:09 +08002192}
2193
Bob Liu81f35162015-11-14 11:12:11 +08002194static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002195{
Juergen Gross3a169c02020-04-03 11:00:34 +02002196 unsigned int psegs, grants, memflags;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002197 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08002198 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002199
Juergen Gross3a169c02020-04-03 11:00:34 +02002200 memflags = memalloc_noio_save();
2201
Julien Grall6cc568332015-08-13 13:13:35 +01002202 if (info->max_indirect_segments == 0) {
2203 if (!HAS_EXTRA_REQ)
2204 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2205 else {
2206 /*
2207 * When an extra req is required, the maximum
2208 * grants supported is related to the size of the
2209 * Linux block segment.
2210 */
2211 grants = GRANTS_PER_PSEG;
2212 }
2213 }
Bob Liud50babb2015-07-22 14:40:08 +08002214 else
Julien Grallc004a6f2015-07-22 16:44:54 +01002215 grants = info->max_indirect_segments;
Jan Beulich3b4f1882017-01-23 08:11:37 -07002216 psegs = DIV_ROUND_UP(grants, GRANTS_PER_PSEG);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002217
Bob Liu81f35162015-11-14 11:12:11 +08002218 err = fill_grant_buffer(rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +01002219 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002220 if (err)
2221 goto out_of_memory;
2222
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002223 if (!info->feature_persistent && info->max_indirect_segments) {
2224 /*
2225 * We are using indirect descriptors but not persistent
2226 * grants, we need to allocate a set of pages that can be
2227 * used for mapping indirect grefs
2228 */
Julien Grallc004a6f2015-07-22 16:44:54 +01002229 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002230
Bob Liu81f35162015-11-14 11:12:11 +08002231 BUG_ON(!list_empty(&rinfo->indirect_pages));
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002232 for (i = 0; i < num; i++) {
Juergen Gross3a169c02020-04-03 11:00:34 +02002233 struct page *indirect_page = alloc_page(GFP_KERNEL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002234 if (!indirect_page)
2235 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002236 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002237 }
2238 }
2239
Bob Liu86839c52015-06-03 13:40:03 +08002240 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Kees Cook6396bb22018-06-12 14:03:40 -07002241 rinfo->shadow[i].grants_used =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002242 kvcalloc(grants,
2243 sizeof(rinfo->shadow[i].grants_used[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002244 GFP_KERNEL);
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002245 rinfo->shadow[i].sg = kvcalloc(psegs,
2246 sizeof(rinfo->shadow[i].sg[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002247 GFP_KERNEL);
Kees Cook6396bb22018-06-12 14:03:40 -07002248 if (info->max_indirect_segments)
2249 rinfo->shadow[i].indirect_grants =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002250 kvcalloc(INDIRECT_GREFS(grants),
2251 sizeof(rinfo->shadow[i].indirect_grants[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002252 GFP_KERNEL);
Bob Liu81f35162015-11-14 11:12:11 +08002253 if ((rinfo->shadow[i].grants_used == NULL) ||
2254 (rinfo->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002255 (info->max_indirect_segments &&
Bob Liu81f35162015-11-14 11:12:11 +08002256 (rinfo->shadow[i].indirect_grants == NULL)))
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002257 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002258 sg_init_table(rinfo->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002259 }
2260
Juergen Gross3a169c02020-04-03 11:00:34 +02002261 memalloc_noio_restore(memflags);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002262
2263 return 0;
2264
2265out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08002266 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002267 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08002268 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002269 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08002270 rinfo->shadow[i].sg = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002271 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08002272 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002273 }
Bob Liu81f35162015-11-14 11:12:11 +08002274 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002275 struct page *indirect_page, *n;
Bob Liu81f35162015-11-14 11:12:11 +08002276 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002277 list_del(&indirect_page->lru);
2278 __free_page(indirect_page);
2279 }
2280 }
Juergen Gross3a169c02020-04-03 11:00:34 +02002281
2282 memalloc_noio_restore(memflags);
2283
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002284 return -ENOMEM;
2285}
2286
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002287/*
Bob Liud50babb2015-07-22 14:40:08 +08002288 * Gather all backend feature-*
2289 */
Bob Liu3df0e502015-11-14 11:12:12 +08002290static void blkfront_gather_backend_features(struct blkfront_info *info)
Bob Liud50babb2015-07-22 14:40:08 +08002291{
Bob Liud50babb2015-07-22 14:40:08 +08002292 unsigned int indirect_segments;
2293
2294 info->feature_flush = 0;
Mike Christiea4180902016-06-05 14:32:24 -05002295 info->feature_fua = 0;
Bob Liud50babb2015-07-22 14:40:08 +08002296
Bob Liud50babb2015-07-22 14:40:08 +08002297 /*
2298 * If there's no "feature-barrier" defined, then it means
2299 * we're dealing with a very old backend which writes
2300 * synchronously; nothing to do.
2301 *
2302 * If there are barriers, then we use flush.
2303 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002304 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-barrier", 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002305 info->feature_flush = 1;
2306 info->feature_fua = 1;
2307 }
2308
Bob Liud50babb2015-07-22 14:40:08 +08002309 /*
2310 * And if there is "feature-flush-cache" use that above
2311 * barriers.
2312 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002313 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-flush-cache",
2314 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002315 info->feature_flush = 1;
2316 info->feature_fua = 0;
2317 }
Bob Liud50babb2015-07-22 14:40:08 +08002318
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002319 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-discard", 0))
Bob Liud50babb2015-07-22 14:40:08 +08002320 blkfront_setup_discard(info);
2321
SeongJae Park74a85242020-09-23 08:18:40 +02002322 if (info->feature_persistent)
2323 info->feature_persistent =
2324 !!xenbus_read_unsigned(info->xbdev->otherend,
2325 "feature-persistent", 0);
Bob Liud50babb2015-07-22 14:40:08 +08002326
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002327 indirect_segments = xenbus_read_unsigned(info->xbdev->otherend,
2328 "feature-max-indirect-segments", 0);
Jan Beulich3b4f1882017-01-23 08:11:37 -07002329 if (indirect_segments > xen_blkif_max_segments)
2330 indirect_segments = xen_blkif_max_segments;
2331 if (indirect_segments <= BLKIF_MAX_SEGMENTS_PER_REQUEST)
2332 indirect_segments = 0;
2333 info->max_indirect_segments = indirect_segments;
Juergen Grossa46b5362018-08-13 16:01:11 +02002334
2335 if (info->feature_persistent) {
2336 mutex_lock(&blkfront_mutex);
2337 schedule_delayed_work(&blkfront_work, HZ * 10);
2338 mutex_unlock(&blkfront_mutex);
2339 }
Bob Liud50babb2015-07-22 14:40:08 +08002340}
2341
2342/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002343 * Invoked when the backend is finally 'ready' (and has told produced
2344 * the details about the physical device - #sectors, size, etc).
2345 */
2346static void blkfront_connect(struct blkfront_info *info)
2347{
2348 unsigned long long sectors;
2349 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002350 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002351 unsigned int binfo;
Bob Liu3df0e502015-11-14 11:12:12 +08002352 int err, i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002353 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002354
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002355 switch (info->connected) {
2356 case BLKIF_STATE_CONNECTED:
2357 /*
2358 * Potentially, the back-end may be signalling
2359 * a capacity change; update the capacity.
2360 */
2361 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2362 "sectors", "%Lu", &sectors);
2363 if (XENBUS_EXIST_ERR(err))
2364 return;
2365 printk(KERN_INFO "Setting capacity to %Lu\n",
2366 sectors);
Balbir Singh3cbc28b2020-03-13 05:30:07 +00002367 set_capacity_revalidate_and_notify(info->gd, sectors, true);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002368
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002369 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002370 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002371 /*
2372 * If we are recovering from suspension, we need to wait
2373 * for the backend to announce it's features before
2374 * reconnecting, at least we need to know if the backend
2375 * supports indirect descriptors, and how many.
2376 */
2377 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002378 return;
2379
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002380 default:
2381 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002382 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002383
2384 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2385 __func__, info->xbdev->otherend);
2386
2387 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2388 "sectors", "%llu", &sectors,
2389 "info", "%u", &binfo,
2390 "sector-size", "%lu", &sector_size,
2391 NULL);
2392 if (err) {
2393 xenbus_dev_fatal(info->xbdev, err,
2394 "reading backend fields at %s",
2395 info->xbdev->otherend);
2396 return;
2397 }
2398
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002399 /*
2400 * physcial-sector-size is a newer field, so old backends may not
2401 * provide this. Assume physical sector size to be the same as
2402 * sector_size in that case.
2403 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002404 physical_sector_size = xenbus_read_unsigned(info->xbdev->otherend,
2405 "physical-sector-size",
2406 sector_size);
Bob Liu3df0e502015-11-14 11:12:12 +08002407 blkfront_gather_backend_features(info);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002408 for_each_rinfo(info, rinfo, i) {
2409 err = blkfront_setup_indirect(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08002410 if (err) {
2411 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2412 info->xbdev->otherend);
2413 blkif_free(info, 0);
2414 break;
2415 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002416 }
2417
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002418 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2419 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002420 if (err) {
2421 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2422 info->xbdev->otherend);
Bob Liu4e876c22016-07-27 17:42:04 +08002423 goto fail;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002424 }
2425
2426 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2427
2428 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002429 info->connected = BLKIF_STATE_CONNECTED;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002430 for_each_rinfo(info, rinfo, i)
2431 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002432
Hannes Reineckefef912b2018-09-28 08:17:19 +02002433 device_add_disk(&info->xbdev->dev, info->gd, NULL);
Christian Limpach1d78d702008-04-02 10:54:04 -07002434
2435 info->is_ready = 1;
Bob Liu4e876c22016-07-27 17:42:04 +08002436 return;
2437
2438fail:
2439 blkif_free(info, 0);
2440 return;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002441}
2442
2443/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002444 * Callback received when the backend's state changes.
2445 */
Ian Campbell203fd612009-12-04 15:33:54 +00002446static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002447 enum xenbus_state backend_state)
2448{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002449 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002450
Ian Campbell203fd612009-12-04 15:33:54 +00002451 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002452
2453 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002454 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002455 if (dev->state != XenbusStateInitialising)
2456 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002457 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002458 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002459 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002460 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002461 case XenbusStateReconfiguring:
2462 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002463 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002464 break;
2465
2466 case XenbusStateConnected:
Bob Liuefd15352016-06-07 10:43:15 -04002467 /*
2468 * talk_to_blkback sets state to XenbusStateInitialised
2469 * and blkfront_connect sets it to XenbusStateConnected
2470 * (if connection went OK).
2471 *
2472 * If the backend (or toolstack) decides to poke at backend
2473 * state (and re-trigger the watch by setting the state repeatedly
2474 * to XenbusStateConnected (4)) we need to deal with this.
2475 * This is allowed as this is used to communicate to the guest
2476 * that the size of disk has changed!
2477 */
2478 if ((dev->state != XenbusStateInitialised) &&
2479 (dev->state != XenbusStateConnected)) {
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002480 if (talk_to_blkback(dev, info))
2481 break;
2482 }
Bob Liuefd15352016-06-07 10:43:15 -04002483
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002484 blkfront_connect(info);
2485 break;
2486
David Vrabel36613712014-02-04 18:53:56 +00002487 case XenbusStateClosed:
2488 if (dev->state == XenbusStateClosed)
2489 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002490 fallthrough;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002491 case XenbusStateClosing:
Cathy Averya54c8f02015-10-02 09:35:01 -04002492 if (info)
2493 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002494 break;
2495 }
2496}
2497
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002498static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002499{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002500 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2501 struct block_device *bdev = NULL;
2502 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002503
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002504 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002505
Vasilis Liaskovitisf92898e2018-10-15 15:25:08 +02002506 if (!info)
2507 return 0;
2508
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002509 blkif_free(info, 0);
2510
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002511 mutex_lock(&info->mutex);
2512
2513 disk = info->gd;
2514 if (disk)
2515 bdev = bdget_disk(disk, 0);
2516
2517 info->xbdev = NULL;
2518 mutex_unlock(&info->mutex);
2519
2520 if (!bdev) {
Juergen Grossa46b5362018-08-13 16:01:11 +02002521 mutex_lock(&blkfront_mutex);
2522 free_info(info);
2523 mutex_unlock(&blkfront_mutex);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002524 return 0;
2525 }
2526
2527 /*
2528 * The xbdev was removed before we reached the Closed
2529 * state. See if it's safe to remove the disk. If the bdev
2530 * isn't closed yet, we let release take care of it.
2531 */
2532
2533 mutex_lock(&bdev->bd_mutex);
2534 info = disk->private_data;
2535
Daniel Stoddend54142c2010-08-07 18:51:21 +02002536 dev_warn(disk_to_dev(disk),
2537 "%s was hot-unplugged, %d stale handles\n",
2538 xbdev->nodename, bdev->bd_openers);
2539
Daniel Stodden7b32d102010-04-30 22:01:23 +00002540 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002541 xlvbd_release_gendisk(info);
2542 disk->private_data = NULL;
Juergen Grossa46b5362018-08-13 16:01:11 +02002543 mutex_lock(&blkfront_mutex);
2544 free_info(info);
2545 mutex_unlock(&blkfront_mutex);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002546 }
2547
2548 mutex_unlock(&bdev->bd_mutex);
2549 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002550
2551 return 0;
2552}
2553
Christian Limpach1d78d702008-04-02 10:54:04 -07002554static int blkfront_is_ready(struct xenbus_device *dev)
2555{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002556 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002557
Jan Beulich5d7ed202010-08-07 18:31:12 +02002558 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002559}
2560
Al Viroa63c8482008-03-02 10:23:47 -05002561static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002562{
Daniel Stodden13961742010-08-07 18:36:53 +02002563 struct gendisk *disk = bdev->bd_disk;
2564 struct blkfront_info *info;
2565 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002566
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002567 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002568
Daniel Stodden13961742010-08-07 18:36:53 +02002569 info = disk->private_data;
2570 if (!info) {
2571 /* xbdev gone */
2572 err = -ERESTARTSYS;
2573 goto out;
2574 }
2575
2576 mutex_lock(&info->mutex);
2577
2578 if (!info->gd)
2579 /* xbdev is closed */
2580 err = -ERESTARTSYS;
2581
2582 mutex_unlock(&info->mutex);
2583
Daniel Stodden13961742010-08-07 18:36:53 +02002584out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002585 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002586 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002587}
2588
Al Virodb2a1442013-05-05 21:52:57 -04002589static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002590{
Al Viroa63c8482008-03-02 10:23:47 -05002591 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002592 struct block_device *bdev;
2593 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002594
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002595 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002596
2597 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002598
Felipe Pena2f089cb2013-11-09 13:36:09 -02002599 if (!bdev) {
2600 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2601 goto out_mutex;
2602 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002603 if (bdev->bd_openers)
2604 goto out;
2605
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002606 /*
2607 * Check if we have been instructed to close. We will have
2608 * deferred this request, because the bdev was still open.
2609 */
2610
2611 mutex_lock(&info->mutex);
2612 xbdev = info->xbdev;
2613
2614 if (xbdev && xbdev->state == XenbusStateClosing) {
2615 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002616 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002617 xlvbd_release_gendisk(info);
2618 xenbus_frontend_closed(info->xbdev);
2619 }
2620
2621 mutex_unlock(&info->mutex);
2622
2623 if (!xbdev) {
2624 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002625 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002626 xlvbd_release_gendisk(info);
2627 disk->private_data = NULL;
Juergen Grossa46b5362018-08-13 16:01:11 +02002628 free_info(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002629 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002630
Jens Axboea4cc14e2010-08-08 21:50:05 -04002631out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002632 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002633out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002634 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002635}
2636
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002637static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002638{
2639 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002640 .open = blkif_open,
2641 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002642 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002643 .ioctl = blkif_ioctl,
Arnd Bergmann9452b1a2019-11-28 15:48:10 +01002644 .compat_ioctl = blkdev_compat_ptr_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002645};
2646
2647
Márton Némethec9c42e2010-01-10 13:39:52 +01002648static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002649 { "vbd" },
2650 { "" }
2651};
2652
David Vrabel95afae42014-09-08 17:30:41 +01002653static struct xenbus_driver blkfront_driver = {
2654 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002655 .probe = blkfront_probe,
2656 .remove = blkfront_remove,
2657 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002658 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002659 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002660};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002661
Juergen Grossa46b5362018-08-13 16:01:11 +02002662static void purge_persistent_grants(struct blkfront_info *info)
2663{
2664 unsigned int i;
2665 unsigned long flags;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002666 struct blkfront_ring_info *rinfo;
Juergen Grossa46b5362018-08-13 16:01:11 +02002667
Juergen Gross4ab50af2020-03-05 16:51:29 +01002668 for_each_rinfo(info, rinfo, i) {
Juergen Grossa46b5362018-08-13 16:01:11 +02002669 struct grant *gnt_list_entry, *tmp;
2670
2671 spin_lock_irqsave(&rinfo->ring_lock, flags);
2672
2673 if (rinfo->persistent_gnts_c == 0) {
2674 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2675 continue;
2676 }
2677
2678 list_for_each_entry_safe(gnt_list_entry, tmp, &rinfo->grants,
2679 node) {
2680 if (gnt_list_entry->gref == GRANT_INVALID_REF ||
2681 gnttab_query_foreign_access(gnt_list_entry->gref))
2682 continue;
2683
2684 list_del(&gnt_list_entry->node);
2685 gnttab_end_foreign_access(gnt_list_entry->gref, 0, 0UL);
2686 rinfo->persistent_gnts_c--;
Juergen Gross6c767862018-09-28 09:28:27 +02002687 gnt_list_entry->gref = GRANT_INVALID_REF;
2688 list_add_tail(&gnt_list_entry->node, &rinfo->grants);
Juergen Grossa46b5362018-08-13 16:01:11 +02002689 }
2690
2691 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2692 }
2693}
2694
2695static void blkfront_delay_work(struct work_struct *work)
2696{
2697 struct blkfront_info *info;
2698 bool need_schedule_work = false;
2699
2700 mutex_lock(&blkfront_mutex);
2701
2702 list_for_each_entry(info, &info_list, info_list) {
2703 if (info->feature_persistent) {
2704 need_schedule_work = true;
2705 mutex_lock(&info->mutex);
2706 purge_persistent_grants(info);
2707 mutex_unlock(&info->mutex);
2708 }
2709 }
2710
2711 if (need_schedule_work)
2712 schedule_delayed_work(&blkfront_work, HZ * 10);
2713
2714 mutex_unlock(&blkfront_mutex);
2715}
2716
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002717static int __init xlblk_init(void)
2718{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002719 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002720 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002721
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002722 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002723 return -ENODEV;
2724
Juergen Gross4bcddba2018-08-13 16:01:12 +02002725 if (!xen_has_pv_disk_devices())
2726 return -ENODEV;
2727
2728 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2729 pr_warn("xen_blk: can't get major %d with name %s\n",
2730 XENVBD_MAJOR, DEV_NAME);
2731 return -ENODEV;
2732 }
2733
Jan Beulich3b4f1882017-01-23 08:11:37 -07002734 if (xen_blkif_max_segments < BLKIF_MAX_SEGMENTS_PER_REQUEST)
2735 xen_blkif_max_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2736
Julien Grall9cce2912015-10-13 17:50:11 +01002737 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002738 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002739 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002740 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002741 }
2742
Bob Liu28d949b2015-11-14 11:12:14 +08002743 if (xen_blkif_max_queues > nr_cpus) {
2744 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2745 xen_blkif_max_queues, nr_cpus);
2746 xen_blkif_max_queues = nr_cpus;
2747 }
2748
Juergen Grossa46b5362018-08-13 16:01:11 +02002749 INIT_DELAYED_WORK(&blkfront_work, blkfront_delay_work);
2750
Jan Beulich73db1442011-12-22 09:08:13 +00002751 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002752 if (ret) {
2753 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2754 return ret;
2755 }
2756
2757 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002758}
2759module_init(xlblk_init);
2760
2761
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002762static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002763{
Juergen Grossa46b5362018-08-13 16:01:11 +02002764 cancel_delayed_work_sync(&blkfront_work);
2765
Jan Beulich86050672012-04-05 16:04:52 +01002766 xenbus_unregister_driver(&blkfront_driver);
2767 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2768 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002769}
2770module_exit(xlblk_exit);
2771
2772MODULE_DESCRIPTION("Xen virtual block device frontend");
2773MODULE_LICENSE("GPL");
2774MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002775MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002776MODULE_ALIAS("xenblk");