blob: 501e9dacfff9ded588a88108a99c790130c8819f [file] [log] [blame]
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001/******************************************************************************
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04002 *
3 * Back-end of the driver for virtual block devices. This portion of the
4 * driver exports a 'unified' block-device interface that can be accessed
5 * by any operating system that implements a compatible front end. A
6 * reference front-end implementation can be found in:
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04007 * drivers/block/xen-blkfront.c
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04008 *
9 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
10 * Copyright (c) 2005, Christopher Clark
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License version 2
14 * as published by the Free Software Foundation; or, when distributed
15 * separately from the Linux kernel or incorporated into other
16 * software packages, subject to the following license:
17 *
18 * Permission is hereby granted, free of charge, to any person obtaining a copy
19 * of this source file (the "Software"), to deal in the Software without
20 * restriction, including without limitation the rights to use, copy, modify,
21 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
22 * and to permit persons to whom the Software is furnished to do so, subject to
23 * the following conditions:
24 *
25 * The above copyright notice and this permission notice shall be included in
26 * all copies or substantial portions of the Software.
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
33 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
34 * IN THE SOFTWARE.
35 */
36
Tao Chen77387b82015-04-01 15:04:22 +000037#define pr_fmt(fmt) "xen-blkback: " fmt
38
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040039#include <linux/spinlock.h>
40#include <linux/kthread.h>
41#include <linux/list.h>
42#include <linux/delay.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080043#include <linux/freezer.h>
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020044#include <linux/bitmap.h>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070045
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080046#include <xen/events.h>
47#include <xen/page.h>
Stefano Stabellinie79affc2012-08-08 17:21:14 +000048#include <xen/xen.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080049#include <asm/xen/hypervisor.h>
50#include <asm/xen/hypercall.h>
Roger Pau Monne087ffec2013-02-14 11:12:09 +010051#include <xen/balloon.h>
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +000052#include <xen/grant_table.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040053#include "common.h"
54
55/*
Roger Pau Monnec6cc1422013-04-17 20:18:56 +020056 * Maximum number of unused free pages to keep in the internal buffer.
57 * Setting this to a value too low will reduce memory used in each backend,
58 * but can have a performance penalty.
59 *
60 * A sane value is xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST, but can
61 * be set to a lower value that might degrade performance on some intensive
62 * IO workloads.
63 */
64
SeongJae Park823f2092020-01-27 09:18:11 +010065static int max_buffer_pages = 1024;
66module_param_named(max_buffer_pages, max_buffer_pages, int, 0644);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +020067MODULE_PARM_DESC(max_buffer_pages,
68"Maximum number of free pages to keep in each block backend buffer");
69
Roger Pau Monne3f3aad52013-04-17 20:18:57 +020070/*
71 * Maximum number of grants to map persistently in blkback. For maximum
72 * performance this should be the total numbers of grants that can be used
73 * to fill the ring, but since this might become too high, specially with
74 * the use of indirect descriptors, we set it to a value that provides good
75 * performance without using too much memory.
76 *
77 * When the list of persistent grants is full we clean it up using a LRU
78 * algorithm.
79 */
80
SeongJae Park823f2092020-01-27 09:18:11 +010081static int max_pgrants = 1056;
82module_param_named(max_persistent_grants, max_pgrants, int, 0644);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +020083MODULE_PARM_DESC(max_persistent_grants,
84 "Maximum number of grants to map persistently");
85
86/*
Juergen Gross973e5402018-08-13 16:01:10 +020087 * How long a persistent grant is allowed to remain allocated without being in
88 * use. The time is in seconds, 0 means indefinitely long.
89 */
90
SeongJae Park823f2092020-01-27 09:18:11 +010091static unsigned int pgrant_timeout = 60;
92module_param_named(persistent_grant_unused_seconds, pgrant_timeout,
Juergen Gross973e5402018-08-13 16:01:10 +020093 uint, 0644);
94MODULE_PARM_DESC(persistent_grant_unused_seconds,
95 "Time in seconds an unused persistent grant is allowed to "
96 "remain allocated. Default is 60, 0 means unlimited.");
97
98/*
Bob Liud62d8602015-11-14 11:12:17 +080099 * Maximum number of rings/queues blkback supports, allow as many queues as there
100 * are CPUs if user has not specified a value.
101 */
102unsigned int xenblk_max_queues;
103module_param_named(max_queues, xenblk_max_queues, uint, 0644);
104MODULE_PARM_DESC(max_queues,
105 "Maximum number of hardware queues per virtual disk." \
106 "By default it is the number of online CPUs.");
107
108/*
Bob Liu86839c52015-06-03 13:40:03 +0800109 * Maximum order of pages to be used for the shared ring between front and
110 * backend, 4KB page granularity is used.
111 */
Julien Grall9cce2912015-10-13 17:50:11 +0100112unsigned int xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Joe Perches5657a812018-05-24 13:38:59 -0600113module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, 0444);
Bob Liu86839c52015-06-03 13:40:03 +0800114MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
115/*
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200116 * The LRU mechanism to clean the lists of persistent grants needs to
117 * be executed periodically. The time interval between consecutive executions
118 * of the purge mechanism is set in ms.
119 */
120#define LRU_INTERVAL 100
121
122/*
123 * When the persistent grants list is full we will remove unused grants
124 * from the list. The percent number of grants to be removed at each LRU
125 * execution.
126 */
127#define LRU_PERCENT_CLEAN 5
128
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400129/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400130static unsigned int log_stats;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400131module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400132
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400133#define BLKBACK_INVALID_HANDLE (~0)
134
David Vrabelff4b1562015-01-08 18:06:01 +0000135/* Number of free pages to remove on each call to gnttab_free_pages */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200136#define NUM_BATCH_FREE_PAGES 10
137
Juergen Gross973e5402018-08-13 16:01:10 +0200138static inline bool persistent_gnt_timeout(struct persistent_gnt *persistent_gnt)
139{
SeongJae Park823f2092020-01-27 09:18:11 +0100140 return pgrant_timeout && (jiffies - persistent_gnt->last_used >=
141 HZ * pgrant_timeout);
Juergen Gross973e5402018-08-13 16:01:10 +0200142}
143
Bob Liud4bf0062015-11-14 11:12:19 +0800144static inline int get_free_page(struct xen_blkif_ring *ring, struct page **page)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400145{
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200146 unsigned long flags;
147
Bob Liud4bf0062015-11-14 11:12:19 +0800148 spin_lock_irqsave(&ring->free_pages_lock, flags);
149 if (list_empty(&ring->free_pages)) {
150 BUG_ON(ring->free_pages_num != 0);
151 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
David Vrabelff4b1562015-01-08 18:06:01 +0000152 return gnttab_alloc_pages(1, page);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200153 }
Bob Liud4bf0062015-11-14 11:12:19 +0800154 BUG_ON(ring->free_pages_num == 0);
155 page[0] = list_first_entry(&ring->free_pages, struct page, lru);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200156 list_del(&page[0]->lru);
Bob Liud4bf0062015-11-14 11:12:19 +0800157 ring->free_pages_num--;
158 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200159
160 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400161}
162
Bob Liud4bf0062015-11-14 11:12:19 +0800163static inline void put_free_pages(struct xen_blkif_ring *ring, struct page **page,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200164 int num)
165{
166 unsigned long flags;
167 int i;
168
Bob Liud4bf0062015-11-14 11:12:19 +0800169 spin_lock_irqsave(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200170 for (i = 0; i < num; i++)
Bob Liud4bf0062015-11-14 11:12:19 +0800171 list_add(&page[i]->lru, &ring->free_pages);
172 ring->free_pages_num += num;
173 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200174}
175
Bob Liud4bf0062015-11-14 11:12:19 +0800176static inline void shrink_free_pagepool(struct xen_blkif_ring *ring, int num)
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200177{
178 /* Remove requested pages in batches of NUM_BATCH_FREE_PAGES */
179 struct page *page[NUM_BATCH_FREE_PAGES];
180 unsigned int num_pages = 0;
181 unsigned long flags;
182
Bob Liud4bf0062015-11-14 11:12:19 +0800183 spin_lock_irqsave(&ring->free_pages_lock, flags);
184 while (ring->free_pages_num > num) {
185 BUG_ON(list_empty(&ring->free_pages));
186 page[num_pages] = list_first_entry(&ring->free_pages,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200187 struct page, lru);
188 list_del(&page[num_pages]->lru);
Bob Liud4bf0062015-11-14 11:12:19 +0800189 ring->free_pages_num--;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200190 if (++num_pages == NUM_BATCH_FREE_PAGES) {
Bob Liud4bf0062015-11-14 11:12:19 +0800191 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
David Vrabelff4b1562015-01-08 18:06:01 +0000192 gnttab_free_pages(num_pages, page);
Bob Liud4bf0062015-11-14 11:12:19 +0800193 spin_lock_irqsave(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200194 num_pages = 0;
195 }
196 }
Bob Liud4bf0062015-11-14 11:12:19 +0800197 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200198 if (num_pages != 0)
David Vrabelff4b1562015-01-08 18:06:01 +0000199 gnttab_free_pages(num_pages, page);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200200}
201
202#define vaddr(page) ((unsigned long)pfn_to_kaddr(page_to_pfn(page)))
203
Juergen Gross01263a12020-09-07 15:47:27 +0200204static int do_block_io_op(struct xen_blkif_ring *ring, unsigned int *eoi_flags);
Bob Liu59795702015-11-14 11:12:15 +0800205static int dispatch_rw_block_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400206 struct blkif_request *req,
207 struct pending_req *pending_req);
Bob Liu59795702015-11-14 11:12:15 +0800208static void make_response(struct xen_blkif_ring *ring, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400209 unsigned short op, int st);
210
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100211#define foreach_grant_safe(pos, n, rbtree, node) \
212 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
Roger Pau Monne217fd5e2013-03-18 17:49:33 +0100213 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL; \
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200214 &(pos)->node != NULL; \
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100215 (pos) = container_of(n, typeof(*(pos)), node), \
216 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200217
218
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200219/*
220 * We don't need locking around the persistent grant helpers
Bob Liud4bf0062015-11-14 11:12:19 +0800221 * because blkback uses a single-thread for each backend, so we
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200222 * can be sure that this functions will never be called recursively.
223 *
224 * The only exception to that is put_persistent_grant, that can be called
225 * from interrupt context (by xen_blkbk_unmap), so we have to use atomic
226 * bit operations to modify the flags of a persistent grant and to count
227 * the number of used grants.
228 */
Bob Liud4bf0062015-11-14 11:12:19 +0800229static int add_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200230 struct persistent_gnt *persistent_gnt)
231{
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200232 struct rb_node **new = NULL, *parent = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200233 struct persistent_gnt *this;
Bob Liud4bf0062015-11-14 11:12:19 +0800234 struct xen_blkif *blkif = ring->blkif;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200235
SeongJae Park823f2092020-01-27 09:18:11 +0100236 if (ring->persistent_gnt_c >= max_pgrants) {
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200237 if (!blkif->vbd.overflow_max_grants)
238 blkif->vbd.overflow_max_grants = 1;
239 return -EBUSY;
240 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200241 /* Figure out where to put new node */
Bob Liud4bf0062015-11-14 11:12:19 +0800242 new = &ring->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200243 while (*new) {
244 this = container_of(*new, struct persistent_gnt, node);
245
246 parent = *new;
247 if (persistent_gnt->gnt < this->gnt)
248 new = &((*new)->rb_left);
249 else if (persistent_gnt->gnt > this->gnt)
250 new = &((*new)->rb_right);
251 else {
Tao Chen77387b82015-04-01 15:04:22 +0000252 pr_alert_ratelimited("trying to add a gref that's already in the tree\n");
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200253 return -EINVAL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200254 }
255 }
256
Juergen Grossd77ff242018-08-13 16:01:13 +0200257 persistent_gnt->active = true;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200258 /* Add new node and rebalance tree. */
259 rb_link_node(&(persistent_gnt->node), parent, new);
Bob Liud4bf0062015-11-14 11:12:19 +0800260 rb_insert_color(&(persistent_gnt->node), &ring->persistent_gnts);
261 ring->persistent_gnt_c++;
262 atomic_inc(&ring->persistent_gnt_in_use);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200263 return 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200264}
265
Bob Liud4bf0062015-11-14 11:12:19 +0800266static struct persistent_gnt *get_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200267 grant_ref_t gref)
268{
269 struct persistent_gnt *data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200270 struct rb_node *node = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200271
Bob Liud4bf0062015-11-14 11:12:19 +0800272 node = ring->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200273 while (node) {
274 data = container_of(node, struct persistent_gnt, node);
275
276 if (gref < data->gnt)
277 node = node->rb_left;
278 else if (gref > data->gnt)
279 node = node->rb_right;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200280 else {
Juergen Grossd77ff242018-08-13 16:01:13 +0200281 if (data->active) {
Tao Chen77387b82015-04-01 15:04:22 +0000282 pr_alert_ratelimited("requesting a grant already in use\n");
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200283 return NULL;
284 }
Juergen Grossd77ff242018-08-13 16:01:13 +0200285 data->active = true;
Bob Liud4bf0062015-11-14 11:12:19 +0800286 atomic_inc(&ring->persistent_gnt_in_use);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200287 return data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200288 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200289 }
290 return NULL;
291}
292
Bob Liud4bf0062015-11-14 11:12:19 +0800293static void put_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200294 struct persistent_gnt *persistent_gnt)
295{
Juergen Grossd77ff242018-08-13 16:01:13 +0200296 if (!persistent_gnt->active)
Tao Chen77387b82015-04-01 15:04:22 +0000297 pr_alert_ratelimited("freeing a grant already unused\n");
Juergen Gross973e5402018-08-13 16:01:10 +0200298 persistent_gnt->last_used = jiffies;
Juergen Grossd77ff242018-08-13 16:01:13 +0200299 persistent_gnt->active = false;
Bob Liud4bf0062015-11-14 11:12:19 +0800300 atomic_dec(&ring->persistent_gnt_in_use);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200301}
302
Bob Liud4bf0062015-11-14 11:12:19 +0800303static void free_persistent_gnts(struct xen_blkif_ring *ring, struct rb_root *root,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200304 unsigned int num)
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100305{
306 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
307 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
308 struct persistent_gnt *persistent_gnt;
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100309 struct rb_node *n;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100310 int segs_to_unmap = 0;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000311 struct gntab_unmap_queue_data unmap_data;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000312
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000313 unmap_data.pages = pages;
314 unmap_data.unmap_ops = unmap;
315 unmap_data.kunmap_ops = NULL;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100316
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100317 foreach_grant_safe(persistent_gnt, n, root, node) {
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100318 BUG_ON(persistent_gnt->handle ==
319 BLKBACK_INVALID_HANDLE);
320 gnttab_set_unmap_op(&unmap[segs_to_unmap],
321 (unsigned long) pfn_to_kaddr(page_to_pfn(
322 persistent_gnt->page)),
323 GNTMAP_host_map,
324 persistent_gnt->handle);
325
326 pages[segs_to_unmap] = persistent_gnt->page;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100327
328 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST ||
329 !rb_next(&persistent_gnt->node)) {
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000330
331 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800332 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000333
Bob Liud4bf0062015-11-14 11:12:19 +0800334 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100335 segs_to_unmap = 0;
336 }
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100337
338 rb_erase(&persistent_gnt->node, root);
339 kfree(persistent_gnt);
340 num--;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100341 }
342 BUG_ON(num != 0);
343}
344
Roger Pau Monneabb97b82014-02-11 20:34:03 -0700345void xen_blkbk_unmap_purged_grants(struct work_struct *work)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200346{
347 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
348 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
349 struct persistent_gnt *persistent_gnt;
Bob Liu325d73b2015-04-03 14:42:58 +0800350 int segs_to_unmap = 0;
Bob Liud4bf0062015-11-14 11:12:19 +0800351 struct xen_blkif_ring *ring = container_of(work, typeof(*ring), persistent_purge_work);
Bob Liu325d73b2015-04-03 14:42:58 +0800352 struct gntab_unmap_queue_data unmap_data;
Bob Liu325d73b2015-04-03 14:42:58 +0800353
Bob Liu325d73b2015-04-03 14:42:58 +0800354 unmap_data.pages = pages;
355 unmap_data.unmap_ops = unmap;
356 unmap_data.kunmap_ops = NULL;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200357
Bob Liud4bf0062015-11-14 11:12:19 +0800358 while(!list_empty(&ring->persistent_purge_list)) {
359 persistent_gnt = list_first_entry(&ring->persistent_purge_list,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200360 struct persistent_gnt,
361 remove_node);
362 list_del(&persistent_gnt->remove_node);
363
364 gnttab_set_unmap_op(&unmap[segs_to_unmap],
365 vaddr(persistent_gnt->page),
366 GNTMAP_host_map,
367 persistent_gnt->handle);
368
369 pages[segs_to_unmap] = persistent_gnt->page;
370
371 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST) {
Bob Liu325d73b2015-04-03 14:42:58 +0800372 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800373 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Bob Liud4bf0062015-11-14 11:12:19 +0800374 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200375 segs_to_unmap = 0;
376 }
377 kfree(persistent_gnt);
378 }
379 if (segs_to_unmap > 0) {
Bob Liu325d73b2015-04-03 14:42:58 +0800380 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800381 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Bob Liud4bf0062015-11-14 11:12:19 +0800382 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200383 }
384}
385
Bob Liud4bf0062015-11-14 11:12:19 +0800386static void purge_persistent_gnt(struct xen_blkif_ring *ring)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200387{
388 struct persistent_gnt *persistent_gnt;
389 struct rb_node *n;
390 unsigned int num_clean, total;
Juergen Gross973e5402018-08-13 16:01:10 +0200391 bool scan_used = false;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200392 struct rb_root *root;
393
Bob Liud4bf0062015-11-14 11:12:19 +0800394 if (work_busy(&ring->persistent_purge_work)) {
Bob Liu53bc7dc2015-07-22 14:40:10 +0800395 pr_alert_ratelimited("Scheduled work from previous purge is still busy, cannot purge list\n");
Bob Liu59795702015-11-14 11:12:15 +0800396 goto out;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200397 }
398
SeongJae Park823f2092020-01-27 09:18:11 +0100399 if (ring->persistent_gnt_c < max_pgrants ||
400 (ring->persistent_gnt_c == max_pgrants &&
Juergen Gross973e5402018-08-13 16:01:10 +0200401 !ring->blkif->vbd.overflow_max_grants)) {
402 num_clean = 0;
403 } else {
SeongJae Park823f2092020-01-27 09:18:11 +0100404 num_clean = (max_pgrants / 100) * LRU_PERCENT_CLEAN;
405 num_clean = ring->persistent_gnt_c - max_pgrants + num_clean;
Juergen Gross973e5402018-08-13 16:01:10 +0200406 num_clean = min(ring->persistent_gnt_c, num_clean);
407 pr_debug("Going to purge at least %u persistent grants\n",
408 num_clean);
409 }
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200410
411 /*
412 * At this point, we can assure that there will be no calls
413 * to get_persistent_grant (because we are executing this code from
414 * xen_blkif_schedule), there can only be calls to put_persistent_gnt,
415 * which means that the number of currently used grants will go down,
416 * but never up, so we will always be able to remove the requested
417 * number of grants.
418 */
419
Juergen Gross973e5402018-08-13 16:01:10 +0200420 total = 0;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200421
Bob Liud4bf0062015-11-14 11:12:19 +0800422 BUG_ON(!list_empty(&ring->persistent_purge_list));
423 root = &ring->persistent_gnts;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200424purge_list:
425 foreach_grant_safe(persistent_gnt, n, root, node) {
426 BUG_ON(persistent_gnt->handle ==
427 BLKBACK_INVALID_HANDLE);
428
Juergen Grossd77ff242018-08-13 16:01:13 +0200429 if (persistent_gnt->active)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200430 continue;
Juergen Gross973e5402018-08-13 16:01:10 +0200431 if (!scan_used && !persistent_gnt_timeout(persistent_gnt))
432 continue;
433 if (scan_used && total >= num_clean)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200434 continue;
435
436 rb_erase(&persistent_gnt->node, root);
437 list_add(&persistent_gnt->remove_node,
Bob Liud4bf0062015-11-14 11:12:19 +0800438 &ring->persistent_purge_list);
Juergen Gross973e5402018-08-13 16:01:10 +0200439 total++;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200440 }
441 /*
Juergen Gross973e5402018-08-13 16:01:10 +0200442 * Check whether we also need to start cleaning
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200443 * grants that were used since last purge in order to cope
444 * with the requested num
445 */
Juergen Gross973e5402018-08-13 16:01:10 +0200446 if (!scan_used && total < num_clean) {
447 pr_debug("Still missing %u purged frames\n", num_clean - total);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200448 scan_used = true;
449 goto purge_list;
450 }
Juergen Gross973e5402018-08-13 16:01:10 +0200451
452 if (total) {
453 ring->persistent_gnt_c -= total;
454 ring->blkif->vbd.overflow_max_grants = 0;
455
456 /* We can defer this work */
457 schedule_work(&ring->persistent_purge_work);
458 pr_debug("Purged %u/%u\n", num_clean, total);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200459 }
Roger Pau Monne2d9105432013-06-21 12:56:53 +0200460
Bob Liu59795702015-11-14 11:12:15 +0800461out:
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200462 return;
463}
464
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400465/*
466 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400467 */
Bob Liu59795702015-11-14 11:12:15 +0800468static struct pending_req *alloc_req(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400469{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400470 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400471 unsigned long flags;
472
Bob Liu59795702015-11-14 11:12:15 +0800473 spin_lock_irqsave(&ring->pending_free_lock, flags);
474 if (!list_empty(&ring->pending_free)) {
475 req = list_entry(ring->pending_free.next, struct pending_req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400476 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400477 list_del(&req->free_list);
478 }
Bob Liu59795702015-11-14 11:12:15 +0800479 spin_unlock_irqrestore(&ring->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400480 return req;
481}
482
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400483/*
484 * Return the 'pending_req' structure back to the freepool. We also
485 * wake up the thread if it was waiting for a free page.
486 */
Bob Liu59795702015-11-14 11:12:15 +0800487static void free_req(struct xen_blkif_ring *ring, struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400488{
489 unsigned long flags;
490 int was_empty;
491
Bob Liu59795702015-11-14 11:12:15 +0800492 spin_lock_irqsave(&ring->pending_free_lock, flags);
493 was_empty = list_empty(&ring->pending_free);
494 list_add(&req->free_list, &ring->pending_free);
495 spin_unlock_irqrestore(&ring->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400496 if (was_empty)
Bob Liu59795702015-11-14 11:12:15 +0800497 wake_up(&ring->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400498}
499
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400500/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400501 * Routines for managing virtual block devices (vbds).
502 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400503static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
504 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400505{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400506 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400507 int rc = -EACCES;
508
Mike Christiea0226062016-06-05 14:32:09 -0500509 if ((operation != REQ_OP_READ) && vbd->readonly)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400510 goto out;
511
Jan Beulich8ab52152011-05-17 11:07:05 +0100512 if (likely(req->nr_sects)) {
513 blkif_sector_t end = req->sector_number + req->nr_sects;
514
515 if (unlikely(end < req->sector_number))
516 goto out;
517 if (unlikely(end > vbd_sz(vbd)))
518 goto out;
519 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400520
521 req->dev = vbd->pdevice;
522 req->bdev = vbd->bdev;
523 rc = 0;
524
525 out:
526 return rc;
527}
528
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400529static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400530{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400531 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400532 struct xenbus_transaction xbt;
533 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400534 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400535 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400536
Tao Chen77387b82015-04-01 15:04:22 +0000537 pr_info("VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400538 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Tao Chen77387b82015-04-01 15:04:22 +0000539 pr_info("VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400540 vbd->size = new_size;
541again:
542 err = xenbus_transaction_start(&xbt);
543 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000544 pr_warn("Error starting transaction\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400545 return;
546 }
547 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400548 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400549 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000550 pr_warn("Error writing new size\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400551 goto abort;
552 }
553 /*
554 * Write the current state; we will use this to synchronize
555 * the front-end. If the current state is "connected" the
556 * front-end will get the new size information online.
557 */
558 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
559 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000560 pr_warn("Error writing the state\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400561 goto abort;
562 }
563
564 err = xenbus_transaction_end(xbt, 0);
565 if (err == -EAGAIN)
566 goto again;
567 if (err)
Tao Chen77387b82015-04-01 15:04:22 +0000568 pr_warn("Error ending transaction\n");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400569 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400570abort:
571 xenbus_transaction_end(xbt, 1);
572}
573
574/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400575 * Notification from the guest OS.
576 */
Bob Liu59795702015-11-14 11:12:15 +0800577static void blkif_notify_work(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400578{
Bob Liu59795702015-11-14 11:12:15 +0800579 ring->waiting_reqs = 1;
580 wake_up(&ring->wq);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400581}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400582
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400583irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400584{
585 blkif_notify_work(dev_id);
586 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400587}
588
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400589/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400590 * SCHEDULER FUNCTIONS
591 */
592
Bob Liud4bf0062015-11-14 11:12:19 +0800593static void print_stats(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400594{
Tao Chen77387b82015-04-01 15:04:22 +0000595 pr_info("(%s): oo %3llu | rd %4llu | wr %4llu | f %4llu"
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200596 " | ds %4llu | pg: %4u/%4d\n",
Bob Liudb6fbc12015-12-09 07:44:02 +0800597 current->comm, ring->st_oo_req,
598 ring->st_rd_req, ring->st_wr_req,
599 ring->st_f_req, ring->st_ds_req,
SeongJae Park823f2092020-01-27 09:18:11 +0100600 ring->persistent_gnt_c, max_pgrants);
Bob Liudb6fbc12015-12-09 07:44:02 +0800601 ring->st_print = jiffies + msecs_to_jiffies(10 * 1000);
602 ring->st_rd_req = 0;
603 ring->st_wr_req = 0;
604 ring->st_oo_req = 0;
605 ring->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400606}
607
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400608int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400609{
Bob Liu59795702015-11-14 11:12:15 +0800610 struct xen_blkif_ring *ring = arg;
611 struct xen_blkif *blkif = ring->blkif;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400612 struct xen_vbd *vbd = &blkif->vbd;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200613 unsigned long timeout;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500614 int ret;
Juergen Gross01263a12020-09-07 15:47:27 +0200615 bool do_eoi;
616 unsigned int eoi_flags = XEN_EOI_FLAG_SPURIOUS;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400617
Jiri Kosinaa6e7af12015-10-26 14:47:21 +0900618 set_freezable();
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400619 while (!kthread_should_stop()) {
620 if (try_to_freeze())
621 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400622 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400623 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400624
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200625 timeout = msecs_to_jiffies(LRU_INTERVAL);
626
627 timeout = wait_event_interruptible_timeout(
Bob Liu59795702015-11-14 11:12:15 +0800628 ring->wq,
629 ring->waiting_reqs || kthread_should_stop(),
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200630 timeout);
631 if (timeout == 0)
632 goto purge_gnt_list;
633 timeout = wait_event_interruptible_timeout(
Bob Liu59795702015-11-14 11:12:15 +0800634 ring->pending_free_wq,
635 !list_empty(&ring->pending_free) ||
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200636 kthread_should_stop(),
637 timeout);
638 if (timeout == 0)
639 goto purge_gnt_list;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400640
Juergen Gross01263a12020-09-07 15:47:27 +0200641 do_eoi = ring->waiting_reqs;
642
Bob Liu59795702015-11-14 11:12:15 +0800643 ring->waiting_reqs = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400644 smp_mb(); /* clear flag *before* checking for work */
645
Juergen Gross01263a12020-09-07 15:47:27 +0200646 ret = do_block_io_op(ring, &eoi_flags);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500647 if (ret > 0)
Bob Liu59795702015-11-14 11:12:15 +0800648 ring->waiting_reqs = 1;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500649 if (ret == -EACCES)
Bob Liu59795702015-11-14 11:12:15 +0800650 wait_event_interruptible(ring->shutdown_wq,
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500651 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400652
Juergen Gross01263a12020-09-07 15:47:27 +0200653 if (do_eoi && !ring->waiting_reqs) {
654 xen_irq_lateeoi(ring->irq, eoi_flags);
655 eoi_flags |= XEN_EOI_FLAG_SPURIOUS;
656 }
657
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200658purge_gnt_list:
659 if (blkif->vbd.feature_gnt_persistent &&
Bob Liud4bf0062015-11-14 11:12:19 +0800660 time_after(jiffies, ring->next_lru)) {
661 purge_persistent_gnt(ring);
662 ring->next_lru = jiffies + msecs_to_jiffies(LRU_INTERVAL);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200663 }
664
SeongJae Parkcb9369b2020-01-27 09:18:10 +0100665 /* Shrink the free pages pool if it is too large. */
666 if (time_before(jiffies, blkif->buffer_squeeze_end))
667 shrink_free_pagepool(ring, 0);
668 else
SeongJae Park823f2092020-01-27 09:18:11 +0100669 shrink_free_pagepool(ring, max_buffer_pages);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200670
Bob Liudb6fbc12015-12-09 07:44:02 +0800671 if (log_stats && time_after(jiffies, ring->st_print))
Bob Liud4bf0062015-11-14 11:12:19 +0800672 print_stats(ring);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400673 }
674
Roger Pau Monneef753412014-02-04 11:26:13 +0100675 /* Drain pending purge work */
Bob Liud4bf0062015-11-14 11:12:19 +0800676 flush_work(&ring->persistent_purge_work);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200677
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400678 if (log_stats)
Bob Liud4bf0062015-11-14 11:12:19 +0800679 print_stats(ring);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400680
Bob Liu59795702015-11-14 11:12:15 +0800681 ring->xenblkd = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400682
683 return 0;
684}
685
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400686/*
Roger Pau Monneef753412014-02-04 11:26:13 +0100687 * Remove persistent grants and empty the pool of free pages
688 */
Bob Liu59795702015-11-14 11:12:15 +0800689void xen_blkbk_free_caches(struct xen_blkif_ring *ring)
Roger Pau Monneef753412014-02-04 11:26:13 +0100690{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400691 /* Free all persistent grant pages */
Bob Liud4bf0062015-11-14 11:12:19 +0800692 if (!RB_EMPTY_ROOT(&ring->persistent_gnts))
693 free_persistent_gnts(ring, &ring->persistent_gnts,
694 ring->persistent_gnt_c);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400695
Bob Liud4bf0062015-11-14 11:12:19 +0800696 BUG_ON(!RB_EMPTY_ROOT(&ring->persistent_gnts));
697 ring->persistent_gnt_c = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400698
Matt Rushton2ed22e32014-02-04 11:26:12 +0100699 /* Since we are shutting down remove all pages from the buffer */
Bob Liud4bf0062015-11-14 11:12:19 +0800700 shrink_free_pagepool(ring, 0 /* All */);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400701}
702
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000703static unsigned int xen_blkbk_unmap_prepare(
Bob Liu59795702015-11-14 11:12:15 +0800704 struct xen_blkif_ring *ring,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000705 struct grant_page **pages,
706 unsigned int num,
707 struct gnttab_unmap_grant_ref *unmap_ops,
708 struct page **unmap_pages)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400709{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400710 unsigned int i, invcount = 0;
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400711
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200712 for (i = 0; i < num; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200713 if (pages[i]->persistent_gnt != NULL) {
Bob Liud4bf0062015-11-14 11:12:19 +0800714 put_persistent_gnt(ring, pages[i]->persistent_gnt);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200715 continue;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200716 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200717 if (pages[i]->handle == BLKBACK_INVALID_HANDLE)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400718 continue;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200719 unmap_pages[invcount] = pages[i]->page;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000720 gnttab_set_unmap_op(&unmap_ops[invcount], vaddr(pages[i]->page),
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200721 GNTMAP_host_map, pages[i]->handle);
722 pages[i]->handle = BLKBACK_INVALID_HANDLE;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000723 invcount++;
Bart Van Assche306b82a2017-08-17 16:23:09 -0700724 }
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000725
Bart Van Assche306b82a2017-08-17 16:23:09 -0700726 return invcount;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000727}
728
729static void xen_blkbk_unmap_and_respond_callback(int result, struct gntab_unmap_queue_data *data)
730{
Bob Liu59795702015-11-14 11:12:15 +0800731 struct pending_req *pending_req = (struct pending_req *)(data->data);
732 struct xen_blkif_ring *ring = pending_req->ring;
733 struct xen_blkif *blkif = ring->blkif;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000734
735 /* BUG_ON used to reproduce existing behaviour,
736 but is this the best way to deal with this? */
737 BUG_ON(result);
738
Bob Liud4bf0062015-11-14 11:12:19 +0800739 put_free_pages(ring, data->pages, data->count);
Bob Liu59795702015-11-14 11:12:15 +0800740 make_response(ring, pending_req->id,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000741 pending_req->operation, pending_req->status);
Bob Liu59795702015-11-14 11:12:15 +0800742 free_req(ring, pending_req);
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000743 /*
744 * Make sure the request is freed before releasing blkif,
745 * or there could be a race between free_req and the
746 * cleanup done in xen_blkif_free during shutdown.
747 *
748 * NB: The fact that we might try to wake up pending_free_wq
749 * before drain_complete (in case there's a drain going on)
750 * it's not a problem with our current implementation
751 * because we can assure there's no thread waiting on
752 * pending_free_wq if there's a drain going on, but it has
753 * to be taken into account if the current model is changed.
754 */
Bob Liu59795702015-11-14 11:12:15 +0800755 if (atomic_dec_and_test(&ring->inflight) && atomic_read(&blkif->drain)) {
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000756 complete(&blkif->drain_complete);
757 }
758 xen_blkif_put(blkif);
759}
760
761static void xen_blkbk_unmap_and_respond(struct pending_req *req)
762{
763 struct gntab_unmap_queue_data* work = &req->gnttab_unmap_data;
Bob Liu59795702015-11-14 11:12:15 +0800764 struct xen_blkif_ring *ring = req->ring;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000765 struct grant_page **pages = req->segments;
766 unsigned int invcount;
767
Bob Liu59795702015-11-14 11:12:15 +0800768 invcount = xen_blkbk_unmap_prepare(ring, pages, req->nr_segs,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000769 req->unmap, req->unmap_pages);
770
771 work->data = req;
772 work->done = xen_blkbk_unmap_and_respond_callback;
773 work->unmap_ops = req->unmap;
774 work->kunmap_ops = NULL;
775 work->pages = req->unmap_pages;
776 work->count = invcount;
777
778 gnttab_unmap_refs_async(&req->gnttab_unmap_data);
779}
780
781
782/*
783 * Unmap the grant references.
784 *
785 * This could accumulate ops up to the batch size to reduce the number
786 * of hypercalls, but since this is only used in error paths there's
787 * no real need.
788 */
Bob Liu59795702015-11-14 11:12:15 +0800789static void xen_blkbk_unmap(struct xen_blkif_ring *ring,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000790 struct grant_page *pages[],
791 int num)
792{
793 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
794 struct page *unmap_pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
795 unsigned int invcount = 0;
796 int ret;
797
798 while (num) {
799 unsigned int batch = min(num, BLKIF_MAX_SEGMENTS_PER_REQUEST);
Bob Liu59795702015-11-14 11:12:15 +0800800
801 invcount = xen_blkbk_unmap_prepare(ring, pages, batch,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000802 unmap, unmap_pages);
803 if (invcount) {
804 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200805 BUG_ON(ret);
Bob Liud4bf0062015-11-14 11:12:19 +0800806 put_free_pages(ring, unmap_pages, invcount);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200807 }
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000808 pages += batch;
809 num -= batch;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200810 }
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400811}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400812
Bob Liu59795702015-11-14 11:12:15 +0800813static int xen_blkbk_map(struct xen_blkif_ring *ring,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200814 struct grant_page *pages[],
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200815 int num, bool ro)
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400816{
817 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200818 struct page *pages_to_gnt[BLKIF_MAX_SEGMENTS_PER_REQUEST];
819 struct persistent_gnt *persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200820 phys_addr_t addr = 0;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200821 int i, seg_idx, new_map_idx;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200822 int segs_to_map = 0;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400823 int ret = 0;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200824 int last_map = 0, map_until = 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200825 int use_persistent_gnts;
Bob Liu59795702015-11-14 11:12:15 +0800826 struct xen_blkif *blkif = ring->blkif;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200827
828 use_persistent_gnts = (blkif->vbd.feature_gnt_persistent);
829
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400830 /*
831 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400832 * assign map[..] with the PFN of the page in our domain with the
833 * corresponding grant reference for each page.
834 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200835again:
836 for (i = map_until; i < num; i++) {
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400837 uint32_t flags;
838
Bob Liu59795702015-11-14 11:12:15 +0800839 if (use_persistent_gnts) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200840 persistent_gnt = get_persistent_gnt(
Bob Liud4bf0062015-11-14 11:12:19 +0800841 ring,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200842 pages[i]->gref);
Bob Liu59795702015-11-14 11:12:15 +0800843 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200844
845 if (persistent_gnt) {
846 /*
847 * We are using persistent grants and
848 * the grant is already mapped
849 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200850 pages[i]->page = persistent_gnt->page;
851 pages[i]->persistent_gnt = persistent_gnt;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200852 } else {
Bob Liud4bf0062015-11-14 11:12:19 +0800853 if (get_free_page(ring, &pages[i]->page))
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200854 goto out_of_memory;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200855 addr = vaddr(pages[i]->page);
856 pages_to_gnt[segs_to_map] = pages[i]->page;
857 pages[i]->persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200858 flags = GNTMAP_host_map;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200859 if (!use_persistent_gnts && ro)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200860 flags |= GNTMAP_readonly;
861 gnttab_set_map_op(&map[segs_to_map++], addr,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200862 flags, pages[i]->gref,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200863 blkif->domid);
864 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200865 map_until = i + 1;
866 if (segs_to_map == BLKIF_MAX_SEGMENTS_PER_REQUEST)
867 break;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400868 }
869
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200870 if (segs_to_map) {
871 ret = gnttab_map_refs(map, NULL, pages_to_gnt, segs_to_map);
872 BUG_ON(ret);
873 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400874
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400875 /*
876 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400877 * so that when we access vaddr(pending_req,i) it has the contents of
878 * the page from the other domain.
879 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200880 for (seg_idx = last_map, new_map_idx = 0; seg_idx < map_until; seg_idx++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200881 if (!pages[seg_idx]->persistent_gnt) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200882 /* This is a newly mapped grant */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200883 BUG_ON(new_map_idx >= segs_to_map);
884 if (unlikely(map[new_map_idx].status != 0)) {
Tao Chen77387b82015-04-01 15:04:22 +0000885 pr_debug("invalid buffer -- could not remap it\n");
Bob Liud4bf0062015-11-14 11:12:19 +0800886 put_free_pages(ring, &pages[seg_idx]->page, 1);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200887 pages[seg_idx]->handle = BLKBACK_INVALID_HANDLE;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200888 ret |= 1;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200889 goto next;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200890 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200891 pages[seg_idx]->handle = map[new_map_idx].handle;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200892 } else {
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200893 continue;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200894 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200895 if (use_persistent_gnts &&
SeongJae Park823f2092020-01-27 09:18:11 +0100896 ring->persistent_gnt_c < max_pgrants) {
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200897 /*
898 * We are using persistent grants, the grant is
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200899 * not mapped but we might have room for it.
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200900 */
901 persistent_gnt = kmalloc(sizeof(struct persistent_gnt),
902 GFP_KERNEL);
903 if (!persistent_gnt) {
904 /*
905 * If we don't have enough memory to
906 * allocate the persistent_gnt struct
907 * map this grant non-persistenly
908 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200909 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200910 }
911 persistent_gnt->gnt = map[new_map_idx].ref;
912 persistent_gnt->handle = map[new_map_idx].handle;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200913 persistent_gnt->page = pages[seg_idx]->page;
Bob Liud4bf0062015-11-14 11:12:19 +0800914 if (add_persistent_gnt(ring,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200915 persistent_gnt)) {
916 kfree(persistent_gnt);
917 persistent_gnt = NULL;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200918 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200919 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200920 pages[seg_idx]->persistent_gnt = persistent_gnt;
Tao Chen77387b82015-04-01 15:04:22 +0000921 pr_debug("grant %u added to the tree of persistent grants, using %u/%u\n",
Bob Liud4bf0062015-11-14 11:12:19 +0800922 persistent_gnt->gnt, ring->persistent_gnt_c,
SeongJae Park823f2092020-01-27 09:18:11 +0100923 max_pgrants);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200924 goto next;
925 }
926 if (use_persistent_gnts && !blkif->vbd.overflow_max_grants) {
927 blkif->vbd.overflow_max_grants = 1;
Tao Chen77387b82015-04-01 15:04:22 +0000928 pr_debug("domain %u, device %#x is using maximum number of persistent grants\n",
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200929 blkif->domid, blkif->vbd.handle);
930 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200931 /*
932 * We could not map this grant persistently, so use it as
933 * a non-persistent grant.
934 */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200935next:
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200936 new_map_idx++;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400937 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200938 segs_to_map = 0;
939 last_map = map_until;
940 if (map_until != num)
941 goto again;
942
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400943 return ret;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200944
945out_of_memory:
Tao Chen77387b82015-04-01 15:04:22 +0000946 pr_alert("%s: out of memory\n", __func__);
Bob Liud4bf0062015-11-14 11:12:19 +0800947 put_free_pages(ring, pages_to_gnt, segs_to_map);
SeongJae Parkf9bd84a2019-11-26 16:36:05 +0100948 for (i = last_map; i < num; i++)
949 pages[i]->handle = BLKBACK_INVALID_HANDLE;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200950 return -ENOMEM;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400951}
952
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200953static int xen_blkbk_map_seg(struct pending_req *pending_req)
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200954{
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200955 int rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200956
Bob Liu59795702015-11-14 11:12:15 +0800957 rc = xen_blkbk_map(pending_req->ring, pending_req->segments,
Julien Grall6684fa12015-06-17 15:28:08 +0100958 pending_req->nr_segs,
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200959 (pending_req->operation != BLKIF_OP_READ));
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200960
961 return rc;
962}
963
964static int xen_blkbk_parse_indirect(struct blkif_request *req,
965 struct pending_req *pending_req,
966 struct seg_buf seg[],
967 struct phys_req *preq)
968{
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200969 struct grant_page **pages = pending_req->indirect_pages;
Bob Liu59795702015-11-14 11:12:15 +0800970 struct xen_blkif_ring *ring = pending_req->ring;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200971 int indirect_grefs, rc, n, nseg, i;
Roger Pau Monne80bfa2f2014-02-04 11:26:15 +0100972 struct blkif_request_segment *segments = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200973
Julien Grall6684fa12015-06-17 15:28:08 +0100974 nseg = pending_req->nr_segs;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200975 indirect_grefs = INDIRECT_PAGES(nseg);
976 BUG_ON(indirect_grefs > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
977
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200978 for (i = 0; i < indirect_grefs; i++)
979 pages[i]->gref = req->u.indirect.indirect_grefs[i];
980
Bob Liu59795702015-11-14 11:12:15 +0800981 rc = xen_blkbk_map(ring, pages, indirect_grefs, true);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200982 if (rc)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200983 goto unmap;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200984
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200985 for (n = 0, i = 0; n < nseg; n++) {
Roger Pau Monné18779142015-11-03 16:40:43 +0000986 uint8_t first_sect, last_sect;
987
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200988 if ((n % SEGS_PER_INDIRECT_FRAME) == 0) {
989 /* Map indirect segments */
990 if (segments)
991 kunmap_atomic(segments);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200992 segments = kmap_atomic(pages[n/SEGS_PER_INDIRECT_FRAME]->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200993 }
994 i = n % SEGS_PER_INDIRECT_FRAME;
Roger Pau Monné18779142015-11-03 16:40:43 +0000995
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200996 pending_req->segments[n]->gref = segments[i].gref;
Roger Pau Monné18779142015-11-03 16:40:43 +0000997
998 first_sect = READ_ONCE(segments[i].first_sect);
999 last_sect = READ_ONCE(segments[i].last_sect);
1000 if (last_sect >= (XEN_PAGE_SIZE >> 9) || last_sect < first_sect) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001001 rc = -EINVAL;
1002 goto unmap;
1003 }
Roger Pau Monné18779142015-11-03 16:40:43 +00001004
1005 seg[n].nsec = last_sect - first_sect + 1;
1006 seg[n].offset = first_sect << 9;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001007 preq->nr_sects += seg[n].nsec;
1008 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +02001009
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001010unmap:
1011 if (segments)
1012 kunmap_atomic(segments);
Bob Liu59795702015-11-14 11:12:15 +08001013 xen_blkbk_unmap(ring, pages, indirect_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001014 return rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +02001015}
1016
Bob Liu59795702015-11-14 11:12:15 +08001017static int dispatch_discard_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001018 struct blkif_request *req)
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001019{
1020 int err = 0;
1021 int status = BLKIF_RSP_OKAY;
Bob Liu59795702015-11-14 11:12:15 +08001022 struct xen_blkif *blkif = ring->blkif;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001023 struct block_device *bdev = blkif->vbd.bdev;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -04001024 unsigned long secure;
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001025 struct phys_req preq;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001026
Vegard Nossumea5ec762013-09-05 13:00:14 +02001027 xen_blkif_get(blkif);
1028
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001029 preq.sector_number = req->u.discard.sector_number;
1030 preq.nr_sects = req->u.discard.nr_sectors;
1031
Mike Christiea0226062016-06-05 14:32:09 -05001032 err = xen_vbd_translate(&preq, blkif, REQ_OP_WRITE);
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001033 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +00001034 pr_warn("access denied: DISCARD [%llu->%llu] on dev=%04x\n",
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001035 preq.sector_number,
1036 preq.sector_number + preq.nr_sects, blkif->vbd.pdevice);
1037 goto fail_response;
1038 }
Bob Liudb6fbc12015-12-09 07:44:02 +08001039 ring->st_ds_req++;
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001040
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -04001041 secure = (blkif->vbd.discard_secure &&
1042 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
1043 BLKDEV_DISCARD_SECURE : 0;
1044
1045 err = blkdev_issue_discard(bdev, req->u.discard.sector_number,
1046 req->u.discard.nr_sectors,
1047 GFP_KERNEL, secure);
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001048fail_response:
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001049 if (err == -EOPNOTSUPP) {
Tao Chen77387b82015-04-01 15:04:22 +00001050 pr_debug("discard op failed, not supported\n");
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001051 status = BLKIF_RSP_EOPNOTSUPP;
1052 } else if (err)
1053 status = BLKIF_RSP_ERROR;
1054
Bob Liu59795702015-11-14 11:12:15 +08001055 make_response(ring, req->u.discard.id, req->operation, status);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001056 xen_blkif_put(blkif);
1057 return err;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001058}
1059
Bob Liu59795702015-11-14 11:12:15 +08001060static int dispatch_other_io(struct xen_blkif_ring *ring,
David Vrabel0e367ae2013-03-07 17:32:01 +00001061 struct blkif_request *req,
1062 struct pending_req *pending_req)
1063{
Bob Liu59795702015-11-14 11:12:15 +08001064 free_req(ring, pending_req);
1065 make_response(ring, req->u.other.id, req->operation,
David Vrabel0e367ae2013-03-07 17:32:01 +00001066 BLKIF_RSP_EOPNOTSUPP);
1067 return -EIO;
1068}
1069
Bob Liu59795702015-11-14 11:12:15 +08001070static void xen_blk_drain_io(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001071{
Bob Liu59795702015-11-14 11:12:15 +08001072 struct xen_blkif *blkif = ring->blkif;
1073
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001074 atomic_set(&blkif->drain, 1);
1075 do {
Bob Liu59795702015-11-14 11:12:15 +08001076 if (atomic_read(&ring->inflight) == 0)
Konrad Rzeszutek Wilk6927d922011-10-17 14:27:48 -04001077 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001078 wait_for_completion_interruptible_timeout(
1079 &blkif->drain_complete, HZ);
1080
1081 if (!atomic_read(&blkif->drain))
1082 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001083 } while (!kthread_should_stop());
1084 atomic_set(&blkif->drain, 0);
1085}
1086
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001087static void __end_block_io_op(struct pending_req *pending_req,
1088 blk_status_t error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001089{
1090 /* An error fails the entire request. */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001091 if (pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE &&
1092 error == BLK_STS_NOTSUPP) {
Tao Chen77387b82015-04-01 15:04:22 +00001093 pr_debug("flush diskcache op failed, not supported\n");
Bob Liu59795702015-11-14 11:12:15 +08001094 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->ring->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001095 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001096 } else if (pending_req->operation == BLKIF_OP_WRITE_BARRIER &&
1097 error == BLK_STS_NOTSUPP) {
Tao Chen77387b82015-04-01 15:04:22 +00001098 pr_debug("write barrier op failed, not supported\n");
Bob Liu59795702015-11-14 11:12:15 +08001099 xen_blkbk_barrier(XBT_NIL, pending_req->ring->blkif->be, 0);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001100 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001101 } else if (error) {
Tao Chen77387b82015-04-01 15:04:22 +00001102 pr_debug("Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001103 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001104 pending_req->status = BLKIF_RSP_ERROR;
1105 }
1106
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001107 /*
1108 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001109 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001110 * the proper response on the ring.
1111 */
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +00001112 if (atomic_dec_and_test(&pending_req->pendcnt))
1113 xen_blkbk_unmap_and_respond(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001114}
1115
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001116/*
1117 * bio callback.
1118 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001119static void end_block_io_op(struct bio *bio)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001120{
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001121 __end_block_io_op(bio->bi_private, bio->bi_status);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001122 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001123}
1124
1125
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001126
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001127/*
1128 * Function to copy the from the ring buffer the 'struct blkif_request'
1129 * (which has the sectors we want, number of them, grant references, etc),
1130 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001131 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001132static int
Juergen Gross01263a12020-09-07 15:47:27 +02001133__do_block_io_op(struct xen_blkif_ring *ring, unsigned int *eoi_flags)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001134{
Bob Liu59795702015-11-14 11:12:15 +08001135 union blkif_back_rings *blk_rings = &ring->blk_rings;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001136 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001137 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001138 RING_IDX rc, rp;
1139 int more_to_do = 0;
1140
1141 rc = blk_rings->common.req_cons;
1142 rp = blk_rings->common.sring->req_prod;
1143 rmb(); /* Ensure we see queued requests up to 'rp'. */
1144
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -05001145 if (RING_REQUEST_PROD_OVERFLOW(&blk_rings->common, rp)) {
1146 rc = blk_rings->common.rsp_prod_pvt;
Tao Chen77387b82015-04-01 15:04:22 +00001147 pr_warn("Frontend provided bogus ring requests (%d - %d = %d). Halting ring processing on dev=%04x\n",
Bob Liu59795702015-11-14 11:12:15 +08001148 rp, rc, rp - rc, ring->blkif->vbd.pdevice);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -05001149 return -EACCES;
1150 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001151 while (rc != rp) {
1152
1153 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
1154 break;
1155
Juergen Gross01263a12020-09-07 15:47:27 +02001156 /* We've seen a request, so clear spurious eoi flag. */
1157 *eoi_flags &= ~XEN_EOI_FLAG_SPURIOUS;
1158
Keir Fraser8270b452009-03-06 08:29:15 +00001159 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001160 more_to_do = 1;
1161 break;
1162 }
1163
Bob Liu59795702015-11-14 11:12:15 +08001164 pending_req = alloc_req(ring);
Keir Fraser8270b452009-03-06 08:29:15 +00001165 if (NULL == pending_req) {
Bob Liudb6fbc12015-12-09 07:44:02 +08001166 ring->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001167 more_to_do = 1;
1168 break;
1169 }
1170
Bob Liu59795702015-11-14 11:12:15 +08001171 switch (ring->blkif->blk_protocol) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001172 case BLKIF_PROTOCOL_NATIVE:
1173 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
1174 break;
1175 case BLKIF_PROTOCOL_X86_32:
1176 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
1177 break;
1178 case BLKIF_PROTOCOL_X86_64:
1179 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
1180 break;
1181 default:
1182 BUG();
1183 }
1184 blk_rings->common.req_cons = ++rc; /* before make_response() */
1185
1186 /* Apply all sanity checks to /private copy/ of request. */
1187 barrier();
David Vrabel0e367ae2013-03-07 17:32:01 +00001188
1189 switch (req.operation) {
1190 case BLKIF_OP_READ:
1191 case BLKIF_OP_WRITE:
1192 case BLKIF_OP_WRITE_BARRIER:
1193 case BLKIF_OP_FLUSH_DISKCACHE:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001194 case BLKIF_OP_INDIRECT:
Bob Liu59795702015-11-14 11:12:15 +08001195 if (dispatch_rw_block_io(ring, &req, pending_req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001196 goto done;
1197 break;
1198 case BLKIF_OP_DISCARD:
Bob Liu59795702015-11-14 11:12:15 +08001199 free_req(ring, pending_req);
1200 if (dispatch_discard_io(ring, &req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001201 goto done;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001202 break;
David Vrabel0e367ae2013-03-07 17:32:01 +00001203 default:
Bob Liu59795702015-11-14 11:12:15 +08001204 if (dispatch_other_io(ring, &req, pending_req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001205 goto done;
1206 break;
1207 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001208
1209 /* Yield point for this unbounded loop. */
1210 cond_resched();
1211 }
David Vrabel0e367ae2013-03-07 17:32:01 +00001212done:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001213 return more_to_do;
1214}
1215
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001216static int
Juergen Gross01263a12020-09-07 15:47:27 +02001217do_block_io_op(struct xen_blkif_ring *ring, unsigned int *eoi_flags)
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001218{
Bob Liu59795702015-11-14 11:12:15 +08001219 union blkif_back_rings *blk_rings = &ring->blk_rings;
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001220 int more_to_do;
1221
1222 do {
Juergen Gross01263a12020-09-07 15:47:27 +02001223 more_to_do = __do_block_io_op(ring, eoi_flags);
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001224 if (more_to_do)
1225 break;
1226
1227 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
1228 } while (more_to_do);
1229
1230 return more_to_do;
1231}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001232/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001233 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
1234 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001235 */
Bob Liu59795702015-11-14 11:12:15 +08001236static int dispatch_rw_block_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -04001237 struct blkif_request *req,
1238 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001239{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001240 struct phys_req preq;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001241 struct seg_buf *seg = pending_req->seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001242 unsigned int nseg;
1243 struct bio *bio = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001244 struct bio **biolist = pending_req->biolist;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001245 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001246 int operation;
Mike Christiea0226062016-06-05 14:32:09 -05001247 int operation_flags = 0;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001248 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001249 bool drain = false;
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001250 struct grant_page **pages = pending_req->segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001251 unsigned short req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001252
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001253 req_operation = req->operation == BLKIF_OP_INDIRECT ?
1254 req->u.indirect.indirect_op : req->operation;
Julien Grall67de5df2015-05-05 16:25:56 +01001255
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001256 if ((req->operation == BLKIF_OP_INDIRECT) &&
1257 (req_operation != BLKIF_OP_READ) &&
1258 (req_operation != BLKIF_OP_WRITE)) {
Tao Chen77387b82015-04-01 15:04:22 +00001259 pr_debug("Invalid indirect operation (%u)\n", req_operation);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001260 goto fail_response;
1261 }
1262
1263 switch (req_operation) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001264 case BLKIF_OP_READ:
Bob Liudb6fbc12015-12-09 07:44:02 +08001265 ring->st_rd_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001266 operation = REQ_OP_READ;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001267 break;
1268 case BLKIF_OP_WRITE:
Bob Liudb6fbc12015-12-09 07:44:02 +08001269 ring->st_wr_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001270 operation = REQ_OP_WRITE;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001271 operation_flags = REQ_SYNC | REQ_IDLE;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001272 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001273 case BLKIF_OP_WRITE_BARRIER:
1274 drain = true;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001275 fallthrough;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -04001276 case BLKIF_OP_FLUSH_DISKCACHE:
Bob Liudb6fbc12015-12-09 07:44:02 +08001277 ring->st_f_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001278 operation = REQ_OP_WRITE;
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001279 operation_flags = REQ_PREFLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001280 break;
1281 default:
1282 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001283 goto fail_response;
1284 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001285 }
1286
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001287 /* Check that the number of segments is sane. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001288 nseg = req->operation == BLKIF_OP_INDIRECT ?
1289 req->u.indirect.nr_segments : req->u.rw.nr_segments;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001290
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001291 if (unlikely(nseg == 0 && operation_flags != REQ_PREFLUSH) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001292 unlikely((req->operation != BLKIF_OP_INDIRECT) &&
1293 (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) ||
1294 unlikely((req->operation == BLKIF_OP_INDIRECT) &&
1295 (nseg > MAX_INDIRECT_SEGMENTS))) {
Tao Chen77387b82015-04-01 15:04:22 +00001296 pr_debug("Bad number of segments in request (%d)\n", nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001297 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001298 goto fail_response;
1299 }
1300
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001301 preq.nr_sects = 0;
1302
Bob Liu59795702015-11-14 11:12:15 +08001303 pending_req->ring = ring;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001304 pending_req->id = req->u.rw.id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001305 pending_req->operation = req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001306 pending_req->status = BLKIF_RSP_OKAY;
Julien Grall6684fa12015-06-17 15:28:08 +01001307 pending_req->nr_segs = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001308
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001309 if (req->operation != BLKIF_OP_INDIRECT) {
1310 preq.dev = req->u.rw.handle;
1311 preq.sector_number = req->u.rw.sector_number;
1312 for (i = 0; i < nseg; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001313 pages[i]->gref = req->u.rw.seg[i].gref;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001314 seg[i].nsec = req->u.rw.seg[i].last_sect -
1315 req->u.rw.seg[i].first_sect + 1;
1316 seg[i].offset = (req->u.rw.seg[i].first_sect << 9);
Julien Grall67de5df2015-05-05 16:25:56 +01001317 if ((req->u.rw.seg[i].last_sect >= (XEN_PAGE_SIZE >> 9)) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001318 (req->u.rw.seg[i].last_sect <
1319 req->u.rw.seg[i].first_sect))
1320 goto fail_response;
1321 preq.nr_sects += seg[i].nsec;
1322 }
1323 } else {
1324 preq.dev = req->u.indirect.handle;
1325 preq.sector_number = req->u.indirect.sector_number;
1326 if (xen_blkbk_parse_indirect(req, pending_req, seg, &preq))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001327 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001328 }
1329
Bob Liu59795702015-11-14 11:12:15 +08001330 if (xen_vbd_translate(&preq, ring->blkif, operation) != 0) {
Tao Chen77387b82015-04-01 15:04:22 +00001331 pr_debug("access denied: %s of [%llu,%llu] on dev=%04x\n",
Mike Christiea0226062016-06-05 14:32:09 -05001332 operation == REQ_OP_READ ? "read" : "write",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001333 preq.sector_number,
Chen Ganga72d9002013-02-28 10:34:23 +08001334 preq.sector_number + preq.nr_sects,
Bob Liu59795702015-11-14 11:12:15 +08001335 ring->blkif->vbd.pdevice);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001336 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001337 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001338
1339 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -04001340 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001341 * is set there.
1342 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001343 for (i = 0; i < nseg; i++) {
1344 if (((int)preq.sector_number|(int)seg[i].nsec) &
1345 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Tao Chen77387b82015-04-01 15:04:22 +00001346 pr_debug("Misaligned I/O request from domain %d\n",
Bob Liu59795702015-11-14 11:12:15 +08001347 ring->blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001348 goto fail_response;
1349 }
1350 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001351
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001352 /* Wait on all outstanding I/O's and once that has been completed
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001353 * issue the flush.
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001354 */
1355 if (drain)
Bob Liu59795702015-11-14 11:12:15 +08001356 xen_blk_drain_io(pending_req->ring);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001357
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001358 /*
1359 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001360 * set gnttab_set_unmap_op on all of the grant references and perform
1361 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -04001362 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001363 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001364 if (xen_blkbk_map_seg(pending_req))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001365 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001366
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001367 /*
1368 * This corresponding xen_blkif_put is done in __end_block_io_op, or
1369 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
1370 */
Bob Liu59795702015-11-14 11:12:15 +08001371 xen_blkif_get(ring->blkif);
1372 atomic_inc(&ring->inflight);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001373
1374 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001375 while ((bio == NULL) ||
1376 (bio_add_page(bio,
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001377 pages[i]->page,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001378 seg[i].nsec << 9,
Roger Pau Monneffb1dab2013-03-18 17:49:32 +01001379 seg[i].offset) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001380
Roger Pau Monne1e0f7a22013-06-22 09:59:17 +02001381 int nr_iovecs = min_t(int, (nseg-i), BIO_MAX_PAGES);
1382 bio = bio_alloc(GFP_KERNEL, nr_iovecs);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001383 if (unlikely(bio == NULL))
1384 goto fail_put_bio;
1385
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001386 biolist[nbio++] = bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001387 bio_set_dev(bio, preq.bdev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001388 bio->bi_private = pending_req;
1389 bio->bi_end_io = end_block_io_op;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001390 bio->bi_iter.bi_sector = preq.sector_number;
Mike Christiea0226062016-06-05 14:32:09 -05001391 bio_set_op_attrs(bio, operation, operation_flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001392 }
1393
1394 preq.sector_number += seg[i].nsec;
1395 }
1396
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001397 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001398 if (!bio) {
Christoph Hellwig70fd7612016-11-01 07:40:10 -06001399 BUG_ON(operation_flags != REQ_PREFLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -04001400
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001401 bio = bio_alloc(GFP_KERNEL, 0);
1402 if (unlikely(bio == NULL))
1403 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001404
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001405 biolist[nbio++] = bio;
Christoph Hellwig74d46992017-08-23 19:10:32 +02001406 bio_set_dev(bio, preq.bdev);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001407 bio->bi_private = pending_req;
1408 bio->bi_end_io = end_block_io_op;
Mike Christiea0226062016-06-05 14:32:09 -05001409 bio_set_op_attrs(bio, operation, operation_flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001410 }
1411
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001412 atomic_set(&pending_req->pendcnt, nbio);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001413 blk_start_plug(&plug);
1414
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001415 for (i = 0; i < nbio; i++)
Mike Christie4e49ea42016-06-05 14:31:41 -05001416 submit_bio(biolist[i]);
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001417
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001418 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -04001419 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001420
Mike Christiea0226062016-06-05 14:32:09 -05001421 if (operation == REQ_OP_READ)
Bob Liudb6fbc12015-12-09 07:44:02 +08001422 ring->st_rd_sect += preq.nr_sects;
Mike Christiea0226062016-06-05 14:32:09 -05001423 else if (operation == REQ_OP_WRITE)
Bob Liudb6fbc12015-12-09 07:44:02 +08001424 ring->st_wr_sect += preq.nr_sects;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001425
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001426 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001427
1428 fail_flush:
Bob Liu59795702015-11-14 11:12:15 +08001429 xen_blkbk_unmap(ring, pending_req->segments,
Julien Grall6684fa12015-06-17 15:28:08 +01001430 pending_req->nr_segs);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001431 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -04001432 /* Haven't submitted any bio's yet. */
Bob Liu59795702015-11-14 11:12:15 +08001433 make_response(ring, req->u.rw.id, req_operation, BLKIF_RSP_ERROR);
1434 free_req(ring, pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001435 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001436 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001437
1438 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001439 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001440 bio_put(biolist[i]);
Jan Beulich0e5e0982013-03-11 09:39:55 +00001441 atomic_set(&pending_req->pendcnt, 1);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001442 __end_block_io_op(pending_req, BLK_STS_RESOURCE);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001443 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001444 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001445}
1446
1447
1448
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001449/*
1450 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001451 */
Bob Liu59795702015-11-14 11:12:15 +08001452static void make_response(struct xen_blkif_ring *ring, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001453 unsigned short op, int st)
1454{
Jan Beulich089bc012017-06-13 16:28:27 -04001455 struct blkif_response *resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001456 unsigned long flags;
Bob Liu59795702015-11-14 11:12:15 +08001457 union blkif_back_rings *blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001458 int notify;
1459
Bob Liu59795702015-11-14 11:12:15 +08001460 spin_lock_irqsave(&ring->blk_ring_lock, flags);
1461 blk_rings = &ring->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001462 /* Place on the response ring for the relevant domain. */
Bob Liu59795702015-11-14 11:12:15 +08001463 switch (ring->blkif->blk_protocol) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001464 case BLKIF_PROTOCOL_NATIVE:
Jan Beulich089bc012017-06-13 16:28:27 -04001465 resp = RING_GET_RESPONSE(&blk_rings->native,
1466 blk_rings->native.rsp_prod_pvt);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001467 break;
1468 case BLKIF_PROTOCOL_X86_32:
Jan Beulich089bc012017-06-13 16:28:27 -04001469 resp = RING_GET_RESPONSE(&blk_rings->x86_32,
1470 blk_rings->x86_32.rsp_prod_pvt);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001471 break;
1472 case BLKIF_PROTOCOL_X86_64:
Jan Beulich089bc012017-06-13 16:28:27 -04001473 resp = RING_GET_RESPONSE(&blk_rings->x86_64,
1474 blk_rings->x86_64.rsp_prod_pvt);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001475 break;
1476 default:
1477 BUG();
1478 }
Jan Beulich089bc012017-06-13 16:28:27 -04001479
1480 resp->id = id;
1481 resp->operation = op;
1482 resp->status = st;
1483
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001484 blk_rings->common.rsp_prod_pvt++;
1485 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Bob Liu59795702015-11-14 11:12:15 +08001486 spin_unlock_irqrestore(&ring->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001487 if (notify)
Bob Liu59795702015-11-14 11:12:15 +08001488 notify_remote_via_irq(ring->irq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001489}
1490
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001491static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001492{
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001493 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001494
Daniel De Graafb2167ba2011-11-28 11:49:05 -05001495 if (!xen_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001496 return -ENODEV;
1497
Julien Grall9cce2912015-10-13 17:50:11 +01001498 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08001499 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01001500 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
1501 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08001502 }
1503
Bob Liud62d8602015-11-14 11:12:17 +08001504 if (xenblk_max_queues == 0)
1505 xenblk_max_queues = num_online_cpus();
1506
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001507 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001508 if (rc)
1509 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001510
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001511 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001512 if (rc)
1513 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001514
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001515 failed_init:
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001516 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001517}
1518
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001519module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001520
Paul Durrant14855952019-12-02 11:41:17 +00001521static void __exit xen_blkif_fini(void)
1522{
1523 xen_blkif_xenbus_fini();
1524 xen_blkif_interface_fini();
1525}
1526
1527module_exit(xen_blkif_fini);
1528
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001529MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +02001530MODULE_ALIAS("xen-backend:vbd");