blob: 4a80ee752597f02adfc8096e5d14ce9a27e03f0e [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
Roger Pau Monne402b27f2013-04-18 16:06:54 +020065static int xen_blkif_max_buffer_pages = 1024;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +020066module_param_named(max_buffer_pages, xen_blkif_max_buffer_pages, int, 0644);
67MODULE_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
Roger Pau Monne402b27f2013-04-18 16:06:54 +020081static int xen_blkif_max_pgrants = 1056;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +020082module_param_named(max_persistent_grants, xen_blkif_max_pgrants, int, 0644);
83MODULE_PARM_DESC(max_persistent_grants,
84 "Maximum number of grants to map persistently");
85
86/*
Bob Liud62d8602015-11-14 11:12:17 +080087 * Maximum number of rings/queues blkback supports, allow as many queues as there
88 * are CPUs if user has not specified a value.
89 */
90unsigned int xenblk_max_queues;
91module_param_named(max_queues, xenblk_max_queues, uint, 0644);
92MODULE_PARM_DESC(max_queues,
93 "Maximum number of hardware queues per virtual disk." \
94 "By default it is the number of online CPUs.");
95
96/*
Bob Liu86839c52015-06-03 13:40:03 +080097 * Maximum order of pages to be used for the shared ring between front and
98 * backend, 4KB page granularity is used.
99 */
Julien Grall9cce2912015-10-13 17:50:11 +0100100unsigned int xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +0800101module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
102MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
103/*
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200104 * The LRU mechanism to clean the lists of persistent grants needs to
105 * be executed periodically. The time interval between consecutive executions
106 * of the purge mechanism is set in ms.
107 */
108#define LRU_INTERVAL 100
109
110/*
111 * When the persistent grants list is full we will remove unused grants
112 * from the list. The percent number of grants to be removed at each LRU
113 * execution.
114 */
115#define LRU_PERCENT_CLEAN 5
116
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400117/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400118static unsigned int log_stats;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400119module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400120
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400121#define BLKBACK_INVALID_HANDLE (~0)
122
David Vrabelff4b1562015-01-08 18:06:01 +0000123/* Number of free pages to remove on each call to gnttab_free_pages */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200124#define NUM_BATCH_FREE_PAGES 10
125
Bob Liud4bf0062015-11-14 11:12:19 +0800126static inline int get_free_page(struct xen_blkif_ring *ring, struct page **page)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400127{
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200128 unsigned long flags;
129
Bob Liud4bf0062015-11-14 11:12:19 +0800130 spin_lock_irqsave(&ring->free_pages_lock, flags);
131 if (list_empty(&ring->free_pages)) {
132 BUG_ON(ring->free_pages_num != 0);
133 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
David Vrabelff4b1562015-01-08 18:06:01 +0000134 return gnttab_alloc_pages(1, page);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200135 }
Bob Liud4bf0062015-11-14 11:12:19 +0800136 BUG_ON(ring->free_pages_num == 0);
137 page[0] = list_first_entry(&ring->free_pages, struct page, lru);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200138 list_del(&page[0]->lru);
Bob Liud4bf0062015-11-14 11:12:19 +0800139 ring->free_pages_num--;
140 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200141
142 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400143}
144
Bob Liud4bf0062015-11-14 11:12:19 +0800145static inline void put_free_pages(struct xen_blkif_ring *ring, struct page **page,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200146 int num)
147{
148 unsigned long flags;
149 int i;
150
Bob Liud4bf0062015-11-14 11:12:19 +0800151 spin_lock_irqsave(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200152 for (i = 0; i < num; i++)
Bob Liud4bf0062015-11-14 11:12:19 +0800153 list_add(&page[i]->lru, &ring->free_pages);
154 ring->free_pages_num += num;
155 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200156}
157
Bob Liud4bf0062015-11-14 11:12:19 +0800158static inline void shrink_free_pagepool(struct xen_blkif_ring *ring, int num)
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200159{
160 /* Remove requested pages in batches of NUM_BATCH_FREE_PAGES */
161 struct page *page[NUM_BATCH_FREE_PAGES];
162 unsigned int num_pages = 0;
163 unsigned long flags;
164
Bob Liud4bf0062015-11-14 11:12:19 +0800165 spin_lock_irqsave(&ring->free_pages_lock, flags);
166 while (ring->free_pages_num > num) {
167 BUG_ON(list_empty(&ring->free_pages));
168 page[num_pages] = list_first_entry(&ring->free_pages,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200169 struct page, lru);
170 list_del(&page[num_pages]->lru);
Bob Liud4bf0062015-11-14 11:12:19 +0800171 ring->free_pages_num--;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200172 if (++num_pages == NUM_BATCH_FREE_PAGES) {
Bob Liud4bf0062015-11-14 11:12:19 +0800173 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
David Vrabelff4b1562015-01-08 18:06:01 +0000174 gnttab_free_pages(num_pages, page);
Bob Liud4bf0062015-11-14 11:12:19 +0800175 spin_lock_irqsave(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200176 num_pages = 0;
177 }
178 }
Bob Liud4bf0062015-11-14 11:12:19 +0800179 spin_unlock_irqrestore(&ring->free_pages_lock, flags);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200180 if (num_pages != 0)
David Vrabelff4b1562015-01-08 18:06:01 +0000181 gnttab_free_pages(num_pages, page);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200182}
183
184#define vaddr(page) ((unsigned long)pfn_to_kaddr(page_to_pfn(page)))
185
Bob Liu59795702015-11-14 11:12:15 +0800186static int do_block_io_op(struct xen_blkif_ring *ring);
187static int dispatch_rw_block_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400188 struct blkif_request *req,
189 struct pending_req *pending_req);
Bob Liu59795702015-11-14 11:12:15 +0800190static void make_response(struct xen_blkif_ring *ring, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400191 unsigned short op, int st);
192
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100193#define foreach_grant_safe(pos, n, rbtree, node) \
194 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
Roger Pau Monne217fd5e2013-03-18 17:49:33 +0100195 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL; \
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200196 &(pos)->node != NULL; \
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100197 (pos) = container_of(n, typeof(*(pos)), node), \
198 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200199
200
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200201/*
202 * We don't need locking around the persistent grant helpers
Bob Liud4bf0062015-11-14 11:12:19 +0800203 * because blkback uses a single-thread for each backend, so we
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200204 * can be sure that this functions will never be called recursively.
205 *
206 * The only exception to that is put_persistent_grant, that can be called
207 * from interrupt context (by xen_blkbk_unmap), so we have to use atomic
208 * bit operations to modify the flags of a persistent grant and to count
209 * the number of used grants.
210 */
Bob Liud4bf0062015-11-14 11:12:19 +0800211static int add_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200212 struct persistent_gnt *persistent_gnt)
213{
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200214 struct rb_node **new = NULL, *parent = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200215 struct persistent_gnt *this;
Bob Liud4bf0062015-11-14 11:12:19 +0800216 struct xen_blkif *blkif = ring->blkif;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200217
Bob Liud4bf0062015-11-14 11:12:19 +0800218 if (ring->persistent_gnt_c >= xen_blkif_max_pgrants) {
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200219 if (!blkif->vbd.overflow_max_grants)
220 blkif->vbd.overflow_max_grants = 1;
221 return -EBUSY;
222 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200223 /* Figure out where to put new node */
Bob Liud4bf0062015-11-14 11:12:19 +0800224 new = &ring->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200225 while (*new) {
226 this = container_of(*new, struct persistent_gnt, node);
227
228 parent = *new;
229 if (persistent_gnt->gnt < this->gnt)
230 new = &((*new)->rb_left);
231 else if (persistent_gnt->gnt > this->gnt)
232 new = &((*new)->rb_right);
233 else {
Tao Chen77387b82015-04-01 15:04:22 +0000234 pr_alert_ratelimited("trying to add a gref that's already in the tree\n");
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200235 return -EINVAL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200236 }
237 }
238
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200239 bitmap_zero(persistent_gnt->flags, PERSISTENT_GNT_FLAGS_SIZE);
240 set_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200241 /* Add new node and rebalance tree. */
242 rb_link_node(&(persistent_gnt->node), parent, new);
Bob Liud4bf0062015-11-14 11:12:19 +0800243 rb_insert_color(&(persistent_gnt->node), &ring->persistent_gnts);
244 ring->persistent_gnt_c++;
245 atomic_inc(&ring->persistent_gnt_in_use);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200246 return 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200247}
248
Bob Liud4bf0062015-11-14 11:12:19 +0800249static struct persistent_gnt *get_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200250 grant_ref_t gref)
251{
252 struct persistent_gnt *data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200253 struct rb_node *node = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200254
Bob Liud4bf0062015-11-14 11:12:19 +0800255 node = ring->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200256 while (node) {
257 data = container_of(node, struct persistent_gnt, node);
258
259 if (gref < data->gnt)
260 node = node->rb_left;
261 else if (gref > data->gnt)
262 node = node->rb_right;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200263 else {
264 if(test_bit(PERSISTENT_GNT_ACTIVE, data->flags)) {
Tao Chen77387b82015-04-01 15:04:22 +0000265 pr_alert_ratelimited("requesting a grant already in use\n");
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200266 return NULL;
267 }
268 set_bit(PERSISTENT_GNT_ACTIVE, data->flags);
Bob Liud4bf0062015-11-14 11:12:19 +0800269 atomic_inc(&ring->persistent_gnt_in_use);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200270 return data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200271 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200272 }
273 return NULL;
274}
275
Bob Liud4bf0062015-11-14 11:12:19 +0800276static void put_persistent_gnt(struct xen_blkif_ring *ring,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200277 struct persistent_gnt *persistent_gnt)
278{
279 if(!test_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags))
Tao Chen77387b82015-04-01 15:04:22 +0000280 pr_alert_ratelimited("freeing a grant already unused\n");
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200281 set_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags);
282 clear_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags);
Bob Liud4bf0062015-11-14 11:12:19 +0800283 atomic_dec(&ring->persistent_gnt_in_use);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200284}
285
Bob Liud4bf0062015-11-14 11:12:19 +0800286static void free_persistent_gnts(struct xen_blkif_ring *ring, struct rb_root *root,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200287 unsigned int num)
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100288{
289 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
290 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
291 struct persistent_gnt *persistent_gnt;
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100292 struct rb_node *n;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100293 int segs_to_unmap = 0;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000294 struct gntab_unmap_queue_data unmap_data;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000295
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000296 unmap_data.pages = pages;
297 unmap_data.unmap_ops = unmap;
298 unmap_data.kunmap_ops = NULL;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100299
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100300 foreach_grant_safe(persistent_gnt, n, root, node) {
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100301 BUG_ON(persistent_gnt->handle ==
302 BLKBACK_INVALID_HANDLE);
303 gnttab_set_unmap_op(&unmap[segs_to_unmap],
304 (unsigned long) pfn_to_kaddr(page_to_pfn(
305 persistent_gnt->page)),
306 GNTMAP_host_map,
307 persistent_gnt->handle);
308
309 pages[segs_to_unmap] = persistent_gnt->page;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100310
311 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST ||
312 !rb_next(&persistent_gnt->node)) {
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000313
314 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800315 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000316
Bob Liud4bf0062015-11-14 11:12:19 +0800317 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100318 segs_to_unmap = 0;
319 }
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100320
321 rb_erase(&persistent_gnt->node, root);
322 kfree(persistent_gnt);
323 num--;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100324 }
325 BUG_ON(num != 0);
326}
327
Roger Pau Monneabb97b82014-02-11 20:34:03 -0700328void xen_blkbk_unmap_purged_grants(struct work_struct *work)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200329{
330 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
331 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
332 struct persistent_gnt *persistent_gnt;
Bob Liu325d73b2015-04-03 14:42:58 +0800333 int segs_to_unmap = 0;
Bob Liud4bf0062015-11-14 11:12:19 +0800334 struct xen_blkif_ring *ring = container_of(work, typeof(*ring), persistent_purge_work);
Bob Liu325d73b2015-04-03 14:42:58 +0800335 struct gntab_unmap_queue_data unmap_data;
Bob Liu325d73b2015-04-03 14:42:58 +0800336
Bob Liu325d73b2015-04-03 14:42:58 +0800337 unmap_data.pages = pages;
338 unmap_data.unmap_ops = unmap;
339 unmap_data.kunmap_ops = NULL;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200340
Bob Liud4bf0062015-11-14 11:12:19 +0800341 while(!list_empty(&ring->persistent_purge_list)) {
342 persistent_gnt = list_first_entry(&ring->persistent_purge_list,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200343 struct persistent_gnt,
344 remove_node);
345 list_del(&persistent_gnt->remove_node);
346
347 gnttab_set_unmap_op(&unmap[segs_to_unmap],
348 vaddr(persistent_gnt->page),
349 GNTMAP_host_map,
350 persistent_gnt->handle);
351
352 pages[segs_to_unmap] = persistent_gnt->page;
353
354 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST) {
Bob Liu325d73b2015-04-03 14:42:58 +0800355 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800356 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Bob Liud4bf0062015-11-14 11:12:19 +0800357 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200358 segs_to_unmap = 0;
359 }
360 kfree(persistent_gnt);
361 }
362 if (segs_to_unmap > 0) {
Bob Liu325d73b2015-04-03 14:42:58 +0800363 unmap_data.count = segs_to_unmap;
Bob Liub44166c2015-04-03 14:42:59 +0800364 BUG_ON(gnttab_unmap_refs_sync(&unmap_data));
Bob Liud4bf0062015-11-14 11:12:19 +0800365 put_free_pages(ring, pages, segs_to_unmap);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200366 }
367}
368
Bob Liud4bf0062015-11-14 11:12:19 +0800369static void purge_persistent_gnt(struct xen_blkif_ring *ring)
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200370{
371 struct persistent_gnt *persistent_gnt;
372 struct rb_node *n;
373 unsigned int num_clean, total;
Roger Pau Monne2d910542013-06-21 12:56:53 +0200374 bool scan_used = false, clean_used = false;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200375 struct rb_root *root;
376
Bob Liud4bf0062015-11-14 11:12:19 +0800377 if (ring->persistent_gnt_c < xen_blkif_max_pgrants ||
378 (ring->persistent_gnt_c == xen_blkif_max_pgrants &&
379 !ring->blkif->vbd.overflow_max_grants)) {
Bob Liu59795702015-11-14 11:12:15 +0800380 goto out;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200381 }
382
Bob Liud4bf0062015-11-14 11:12:19 +0800383 if (work_busy(&ring->persistent_purge_work)) {
Bob Liu53bc7dc2015-07-22 14:40:10 +0800384 pr_alert_ratelimited("Scheduled work from previous purge is still busy, cannot purge list\n");
Bob Liu59795702015-11-14 11:12:15 +0800385 goto out;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200386 }
387
388 num_clean = (xen_blkif_max_pgrants / 100) * LRU_PERCENT_CLEAN;
Bob Liud4bf0062015-11-14 11:12:19 +0800389 num_clean = ring->persistent_gnt_c - xen_blkif_max_pgrants + num_clean;
390 num_clean = min(ring->persistent_gnt_c, num_clean);
Roger Pau Monne2d910542013-06-21 12:56:53 +0200391 if ((num_clean == 0) ||
Bob Liud4bf0062015-11-14 11:12:19 +0800392 (num_clean > (ring->persistent_gnt_c - atomic_read(&ring->persistent_gnt_in_use))))
Bob Liu59795702015-11-14 11:12:15 +0800393 goto out;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200394
395 /*
396 * At this point, we can assure that there will be no calls
397 * to get_persistent_grant (because we are executing this code from
398 * xen_blkif_schedule), there can only be calls to put_persistent_gnt,
399 * which means that the number of currently used grants will go down,
400 * but never up, so we will always be able to remove the requested
401 * number of grants.
402 */
403
404 total = num_clean;
405
Tao Chen77387b82015-04-01 15:04:22 +0000406 pr_debug("Going to purge %u persistent grants\n", num_clean);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200407
Bob Liud4bf0062015-11-14 11:12:19 +0800408 BUG_ON(!list_empty(&ring->persistent_purge_list));
409 root = &ring->persistent_gnts;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200410purge_list:
411 foreach_grant_safe(persistent_gnt, n, root, node) {
412 BUG_ON(persistent_gnt->handle ==
413 BLKBACK_INVALID_HANDLE);
414
Roger Pau Monne2d910542013-06-21 12:56:53 +0200415 if (clean_used) {
416 clear_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags);
417 continue;
418 }
419
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200420 if (test_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags))
421 continue;
422 if (!scan_used &&
423 (test_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags)))
424 continue;
425
426 rb_erase(&persistent_gnt->node, root);
427 list_add(&persistent_gnt->remove_node,
Bob Liud4bf0062015-11-14 11:12:19 +0800428 &ring->persistent_purge_list);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200429 if (--num_clean == 0)
430 goto finished;
431 }
432 /*
433 * If we get here it means we also need to start cleaning
434 * grants that were used since last purge in order to cope
435 * with the requested num
436 */
Roger Pau Monne2d910542013-06-21 12:56:53 +0200437 if (!scan_used && !clean_used) {
Tao Chen77387b82015-04-01 15:04:22 +0000438 pr_debug("Still missing %u purged frames\n", num_clean);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200439 scan_used = true;
440 goto purge_list;
441 }
442finished:
Roger Pau Monne2d910542013-06-21 12:56:53 +0200443 if (!clean_used) {
Tao Chen77387b82015-04-01 15:04:22 +0000444 pr_debug("Finished scanning for grants to clean, removing used flag\n");
Roger Pau Monne2d910542013-06-21 12:56:53 +0200445 clean_used = true;
446 goto purge_list;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200447 }
Roger Pau Monne2d910542013-06-21 12:56:53 +0200448
Bob Liud4bf0062015-11-14 11:12:19 +0800449 ring->persistent_gnt_c -= (total - num_clean);
450 ring->blkif->vbd.overflow_max_grants = 0;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200451
452 /* We can defer this work */
Bob Liud4bf0062015-11-14 11:12:19 +0800453 schedule_work(&ring->persistent_purge_work);
Tao Chen77387b82015-04-01 15:04:22 +0000454 pr_debug("Purged %u/%u\n", (total - num_clean), total);
Bob Liu59795702015-11-14 11:12:15 +0800455
456out:
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200457 return;
458}
459
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400460/*
461 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400462 */
Bob Liu59795702015-11-14 11:12:15 +0800463static struct pending_req *alloc_req(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400464{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400465 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400466 unsigned long flags;
467
Bob Liu59795702015-11-14 11:12:15 +0800468 spin_lock_irqsave(&ring->pending_free_lock, flags);
469 if (!list_empty(&ring->pending_free)) {
470 req = list_entry(ring->pending_free.next, struct pending_req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400471 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400472 list_del(&req->free_list);
473 }
Bob Liu59795702015-11-14 11:12:15 +0800474 spin_unlock_irqrestore(&ring->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400475 return req;
476}
477
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400478/*
479 * Return the 'pending_req' structure back to the freepool. We also
480 * wake up the thread if it was waiting for a free page.
481 */
Bob Liu59795702015-11-14 11:12:15 +0800482static void free_req(struct xen_blkif_ring *ring, struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400483{
484 unsigned long flags;
485 int was_empty;
486
Bob Liu59795702015-11-14 11:12:15 +0800487 spin_lock_irqsave(&ring->pending_free_lock, flags);
488 was_empty = list_empty(&ring->pending_free);
489 list_add(&req->free_list, &ring->pending_free);
490 spin_unlock_irqrestore(&ring->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400491 if (was_empty)
Bob Liu59795702015-11-14 11:12:15 +0800492 wake_up(&ring->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400493}
494
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400495/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400496 * Routines for managing virtual block devices (vbds).
497 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400498static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
499 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400500{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400501 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400502 int rc = -EACCES;
503
Mike Christiea0226062016-06-05 14:32:09 -0500504 if ((operation != REQ_OP_READ) && vbd->readonly)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400505 goto out;
506
Jan Beulich8ab52152011-05-17 11:07:05 +0100507 if (likely(req->nr_sects)) {
508 blkif_sector_t end = req->sector_number + req->nr_sects;
509
510 if (unlikely(end < req->sector_number))
511 goto out;
512 if (unlikely(end > vbd_sz(vbd)))
513 goto out;
514 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400515
516 req->dev = vbd->pdevice;
517 req->bdev = vbd->bdev;
518 rc = 0;
519
520 out:
521 return rc;
522}
523
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400524static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400525{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400526 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400527 struct xenbus_transaction xbt;
528 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400529 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400530 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400531
Tao Chen77387b82015-04-01 15:04:22 +0000532 pr_info("VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400533 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Tao Chen77387b82015-04-01 15:04:22 +0000534 pr_info("VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400535 vbd->size = new_size;
536again:
537 err = xenbus_transaction_start(&xbt);
538 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000539 pr_warn("Error starting transaction\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400540 return;
541 }
542 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400543 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400544 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000545 pr_warn("Error writing new size\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400546 goto abort;
547 }
548 /*
549 * Write the current state; we will use this to synchronize
550 * the front-end. If the current state is "connected" the
551 * front-end will get the new size information online.
552 */
553 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
554 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +0000555 pr_warn("Error writing the state\n");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400556 goto abort;
557 }
558
559 err = xenbus_transaction_end(xbt, 0);
560 if (err == -EAGAIN)
561 goto again;
562 if (err)
Tao Chen77387b82015-04-01 15:04:22 +0000563 pr_warn("Error ending transaction\n");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400564 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400565abort:
566 xenbus_transaction_end(xbt, 1);
567}
568
569/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400570 * Notification from the guest OS.
571 */
Bob Liu59795702015-11-14 11:12:15 +0800572static void blkif_notify_work(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400573{
Bob Liu59795702015-11-14 11:12:15 +0800574 ring->waiting_reqs = 1;
575 wake_up(&ring->wq);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400576}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400577
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400578irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400579{
580 blkif_notify_work(dev_id);
581 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400582}
583
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400584/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400585 * SCHEDULER FUNCTIONS
586 */
587
Bob Liud4bf0062015-11-14 11:12:19 +0800588static void print_stats(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400589{
Tao Chen77387b82015-04-01 15:04:22 +0000590 pr_info("(%s): oo %3llu | rd %4llu | wr %4llu | f %4llu"
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200591 " | ds %4llu | pg: %4u/%4d\n",
Bob Liudb6fbc12015-12-09 07:44:02 +0800592 current->comm, ring->st_oo_req,
593 ring->st_rd_req, ring->st_wr_req,
594 ring->st_f_req, ring->st_ds_req,
Bob Liud4bf0062015-11-14 11:12:19 +0800595 ring->persistent_gnt_c,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200596 xen_blkif_max_pgrants);
Bob Liudb6fbc12015-12-09 07:44:02 +0800597 ring->st_print = jiffies + msecs_to_jiffies(10 * 1000);
598 ring->st_rd_req = 0;
599 ring->st_wr_req = 0;
600 ring->st_oo_req = 0;
601 ring->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400602}
603
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400604int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400605{
Bob Liu59795702015-11-14 11:12:15 +0800606 struct xen_blkif_ring *ring = arg;
607 struct xen_blkif *blkif = ring->blkif;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400608 struct xen_vbd *vbd = &blkif->vbd;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200609 unsigned long timeout;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500610 int ret;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400611
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400612 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400613
Jiri Kosinaa6e7af12015-10-26 14:47:21 +0900614 set_freezable();
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400615 while (!kthread_should_stop()) {
616 if (try_to_freeze())
617 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400618 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400619 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400620
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200621 timeout = msecs_to_jiffies(LRU_INTERVAL);
622
623 timeout = wait_event_interruptible_timeout(
Bob Liu59795702015-11-14 11:12:15 +0800624 ring->wq,
625 ring->waiting_reqs || kthread_should_stop(),
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200626 timeout);
627 if (timeout == 0)
628 goto purge_gnt_list;
629 timeout = wait_event_interruptible_timeout(
Bob Liu59795702015-11-14 11:12:15 +0800630 ring->pending_free_wq,
631 !list_empty(&ring->pending_free) ||
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200632 kthread_should_stop(),
633 timeout);
634 if (timeout == 0)
635 goto purge_gnt_list;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400636
Bob Liu59795702015-11-14 11:12:15 +0800637 ring->waiting_reqs = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400638 smp_mb(); /* clear flag *before* checking for work */
639
Bob Liu59795702015-11-14 11:12:15 +0800640 ret = do_block_io_op(ring);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500641 if (ret > 0)
Bob Liu59795702015-11-14 11:12:15 +0800642 ring->waiting_reqs = 1;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500643 if (ret == -EACCES)
Bob Liu59795702015-11-14 11:12:15 +0800644 wait_event_interruptible(ring->shutdown_wq,
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500645 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400646
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200647purge_gnt_list:
648 if (blkif->vbd.feature_gnt_persistent &&
Bob Liud4bf0062015-11-14 11:12:19 +0800649 time_after(jiffies, ring->next_lru)) {
650 purge_persistent_gnt(ring);
651 ring->next_lru = jiffies + msecs_to_jiffies(LRU_INTERVAL);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200652 }
653
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200654 /* Shrink if we have more than xen_blkif_max_buffer_pages */
Bob Liud4bf0062015-11-14 11:12:19 +0800655 shrink_free_pagepool(ring, xen_blkif_max_buffer_pages);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200656
Bob Liudb6fbc12015-12-09 07:44:02 +0800657 if (log_stats && time_after(jiffies, ring->st_print))
Bob Liud4bf0062015-11-14 11:12:19 +0800658 print_stats(ring);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400659 }
660
Roger Pau Monneef753412014-02-04 11:26:13 +0100661 /* Drain pending purge work */
Bob Liud4bf0062015-11-14 11:12:19 +0800662 flush_work(&ring->persistent_purge_work);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200663
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400664 if (log_stats)
Bob Liud4bf0062015-11-14 11:12:19 +0800665 print_stats(ring);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400666
Bob Liu59795702015-11-14 11:12:15 +0800667 ring->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400668 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400669
670 return 0;
671}
672
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400673/*
Roger Pau Monneef753412014-02-04 11:26:13 +0100674 * Remove persistent grants and empty the pool of free pages
675 */
Bob Liu59795702015-11-14 11:12:15 +0800676void xen_blkbk_free_caches(struct xen_blkif_ring *ring)
Roger Pau Monneef753412014-02-04 11:26:13 +0100677{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400678 /* Free all persistent grant pages */
Bob Liud4bf0062015-11-14 11:12:19 +0800679 if (!RB_EMPTY_ROOT(&ring->persistent_gnts))
680 free_persistent_gnts(ring, &ring->persistent_gnts,
681 ring->persistent_gnt_c);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400682
Bob Liud4bf0062015-11-14 11:12:19 +0800683 BUG_ON(!RB_EMPTY_ROOT(&ring->persistent_gnts));
684 ring->persistent_gnt_c = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400685
Matt Rushton2ed22e32014-02-04 11:26:12 +0100686 /* Since we are shutting down remove all pages from the buffer */
Bob Liud4bf0062015-11-14 11:12:19 +0800687 shrink_free_pagepool(ring, 0 /* All */);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400688}
689
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000690static unsigned int xen_blkbk_unmap_prepare(
Bob Liu59795702015-11-14 11:12:15 +0800691 struct xen_blkif_ring *ring,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000692 struct grant_page **pages,
693 unsigned int num,
694 struct gnttab_unmap_grant_ref *unmap_ops,
695 struct page **unmap_pages)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400696{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400697 unsigned int i, invcount = 0;
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400698
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200699 for (i = 0; i < num; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200700 if (pages[i]->persistent_gnt != NULL) {
Bob Liud4bf0062015-11-14 11:12:19 +0800701 put_persistent_gnt(ring, pages[i]->persistent_gnt);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200702 continue;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200703 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200704 if (pages[i]->handle == BLKBACK_INVALID_HANDLE)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400705 continue;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200706 unmap_pages[invcount] = pages[i]->page;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000707 gnttab_set_unmap_op(&unmap_ops[invcount], vaddr(pages[i]->page),
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200708 GNTMAP_host_map, pages[i]->handle);
709 pages[i]->handle = BLKBACK_INVALID_HANDLE;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000710 invcount++;
711 }
712
713 return invcount;
714}
715
716static void xen_blkbk_unmap_and_respond_callback(int result, struct gntab_unmap_queue_data *data)
717{
Bob Liu59795702015-11-14 11:12:15 +0800718 struct pending_req *pending_req = (struct pending_req *)(data->data);
719 struct xen_blkif_ring *ring = pending_req->ring;
720 struct xen_blkif *blkif = ring->blkif;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000721
722 /* BUG_ON used to reproduce existing behaviour,
723 but is this the best way to deal with this? */
724 BUG_ON(result);
725
Bob Liud4bf0062015-11-14 11:12:19 +0800726 put_free_pages(ring, data->pages, data->count);
Bob Liu59795702015-11-14 11:12:15 +0800727 make_response(ring, pending_req->id,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000728 pending_req->operation, pending_req->status);
Bob Liu59795702015-11-14 11:12:15 +0800729 free_req(ring, pending_req);
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000730 /*
731 * Make sure the request is freed before releasing blkif,
732 * or there could be a race between free_req and the
733 * cleanup done in xen_blkif_free during shutdown.
734 *
735 * NB: The fact that we might try to wake up pending_free_wq
736 * before drain_complete (in case there's a drain going on)
737 * it's not a problem with our current implementation
738 * because we can assure there's no thread waiting on
739 * pending_free_wq if there's a drain going on, but it has
740 * to be taken into account if the current model is changed.
741 */
Bob Liu59795702015-11-14 11:12:15 +0800742 if (atomic_dec_and_test(&ring->inflight) && atomic_read(&blkif->drain)) {
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000743 complete(&blkif->drain_complete);
744 }
745 xen_blkif_put(blkif);
746}
747
748static void xen_blkbk_unmap_and_respond(struct pending_req *req)
749{
750 struct gntab_unmap_queue_data* work = &req->gnttab_unmap_data;
Bob Liu59795702015-11-14 11:12:15 +0800751 struct xen_blkif_ring *ring = req->ring;
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000752 struct grant_page **pages = req->segments;
753 unsigned int invcount;
754
Bob Liu59795702015-11-14 11:12:15 +0800755 invcount = xen_blkbk_unmap_prepare(ring, pages, req->nr_segs,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000756 req->unmap, req->unmap_pages);
757
758 work->data = req;
759 work->done = xen_blkbk_unmap_and_respond_callback;
760 work->unmap_ops = req->unmap;
761 work->kunmap_ops = NULL;
762 work->pages = req->unmap_pages;
763 work->count = invcount;
764
765 gnttab_unmap_refs_async(&req->gnttab_unmap_data);
766}
767
768
769/*
770 * Unmap the grant references.
771 *
772 * This could accumulate ops up to the batch size to reduce the number
773 * of hypercalls, but since this is only used in error paths there's
774 * no real need.
775 */
Bob Liu59795702015-11-14 11:12:15 +0800776static void xen_blkbk_unmap(struct xen_blkif_ring *ring,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000777 struct grant_page *pages[],
778 int num)
779{
780 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
781 struct page *unmap_pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
782 unsigned int invcount = 0;
783 int ret;
784
785 while (num) {
786 unsigned int batch = min(num, BLKIF_MAX_SEGMENTS_PER_REQUEST);
Bob Liu59795702015-11-14 11:12:15 +0800787
788 invcount = xen_blkbk_unmap_prepare(ring, pages, batch,
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000789 unmap, unmap_pages);
790 if (invcount) {
791 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200792 BUG_ON(ret);
Bob Liud4bf0062015-11-14 11:12:19 +0800793 put_free_pages(ring, unmap_pages, invcount);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200794 }
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +0000795 pages += batch;
796 num -= batch;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200797 }
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400798}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400799
Bob Liu59795702015-11-14 11:12:15 +0800800static int xen_blkbk_map(struct xen_blkif_ring *ring,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200801 struct grant_page *pages[],
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200802 int num, bool ro)
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400803{
804 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200805 struct page *pages_to_gnt[BLKIF_MAX_SEGMENTS_PER_REQUEST];
806 struct persistent_gnt *persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200807 phys_addr_t addr = 0;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200808 int i, seg_idx, new_map_idx;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200809 int segs_to_map = 0;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400810 int ret = 0;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200811 int last_map = 0, map_until = 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200812 int use_persistent_gnts;
Bob Liu59795702015-11-14 11:12:15 +0800813 struct xen_blkif *blkif = ring->blkif;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200814
815 use_persistent_gnts = (blkif->vbd.feature_gnt_persistent);
816
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400817 /*
818 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400819 * assign map[..] with the PFN of the page in our domain with the
820 * corresponding grant reference for each page.
821 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200822again:
823 for (i = map_until; i < num; i++) {
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400824 uint32_t flags;
825
Bob Liu59795702015-11-14 11:12:15 +0800826 if (use_persistent_gnts) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200827 persistent_gnt = get_persistent_gnt(
Bob Liud4bf0062015-11-14 11:12:19 +0800828 ring,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200829 pages[i]->gref);
Bob Liu59795702015-11-14 11:12:15 +0800830 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200831
832 if (persistent_gnt) {
833 /*
834 * We are using persistent grants and
835 * the grant is already mapped
836 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200837 pages[i]->page = persistent_gnt->page;
838 pages[i]->persistent_gnt = persistent_gnt;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200839 } else {
Bob Liud4bf0062015-11-14 11:12:19 +0800840 if (get_free_page(ring, &pages[i]->page))
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200841 goto out_of_memory;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200842 addr = vaddr(pages[i]->page);
843 pages_to_gnt[segs_to_map] = pages[i]->page;
844 pages[i]->persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200845 flags = GNTMAP_host_map;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200846 if (!use_persistent_gnts && ro)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200847 flags |= GNTMAP_readonly;
848 gnttab_set_map_op(&map[segs_to_map++], addr,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200849 flags, pages[i]->gref,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200850 blkif->domid);
851 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200852 map_until = i + 1;
853 if (segs_to_map == BLKIF_MAX_SEGMENTS_PER_REQUEST)
854 break;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400855 }
856
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200857 if (segs_to_map) {
858 ret = gnttab_map_refs(map, NULL, pages_to_gnt, segs_to_map);
859 BUG_ON(ret);
860 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400861
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400862 /*
863 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400864 * so that when we access vaddr(pending_req,i) it has the contents of
865 * the page from the other domain.
866 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200867 for (seg_idx = last_map, new_map_idx = 0; seg_idx < map_until; seg_idx++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200868 if (!pages[seg_idx]->persistent_gnt) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200869 /* This is a newly mapped grant */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200870 BUG_ON(new_map_idx >= segs_to_map);
871 if (unlikely(map[new_map_idx].status != 0)) {
Tao Chen77387b82015-04-01 15:04:22 +0000872 pr_debug("invalid buffer -- could not remap it\n");
Bob Liud4bf0062015-11-14 11:12:19 +0800873 put_free_pages(ring, &pages[seg_idx]->page, 1);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200874 pages[seg_idx]->handle = BLKBACK_INVALID_HANDLE;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200875 ret |= 1;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200876 goto next;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200877 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200878 pages[seg_idx]->handle = map[new_map_idx].handle;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200879 } else {
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200880 continue;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200881 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200882 if (use_persistent_gnts &&
Bob Liud4bf0062015-11-14 11:12:19 +0800883 ring->persistent_gnt_c < xen_blkif_max_pgrants) {
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200884 /*
885 * We are using persistent grants, the grant is
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200886 * not mapped but we might have room for it.
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200887 */
888 persistent_gnt = kmalloc(sizeof(struct persistent_gnt),
889 GFP_KERNEL);
890 if (!persistent_gnt) {
891 /*
892 * If we don't have enough memory to
893 * allocate the persistent_gnt struct
894 * map this grant non-persistenly
895 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200896 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200897 }
898 persistent_gnt->gnt = map[new_map_idx].ref;
899 persistent_gnt->handle = map[new_map_idx].handle;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200900 persistent_gnt->page = pages[seg_idx]->page;
Bob Liud4bf0062015-11-14 11:12:19 +0800901 if (add_persistent_gnt(ring,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200902 persistent_gnt)) {
903 kfree(persistent_gnt);
904 persistent_gnt = NULL;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200905 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200906 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200907 pages[seg_idx]->persistent_gnt = persistent_gnt;
Tao Chen77387b82015-04-01 15:04:22 +0000908 pr_debug("grant %u added to the tree of persistent grants, using %u/%u\n",
Bob Liud4bf0062015-11-14 11:12:19 +0800909 persistent_gnt->gnt, ring->persistent_gnt_c,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200910 xen_blkif_max_pgrants);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200911 goto next;
912 }
913 if (use_persistent_gnts && !blkif->vbd.overflow_max_grants) {
914 blkif->vbd.overflow_max_grants = 1;
Tao Chen77387b82015-04-01 15:04:22 +0000915 pr_debug("domain %u, device %#x is using maximum number of persistent grants\n",
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200916 blkif->domid, blkif->vbd.handle);
917 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200918 /*
919 * We could not map this grant persistently, so use it as
920 * a non-persistent grant.
921 */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200922next:
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200923 new_map_idx++;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400924 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200925 segs_to_map = 0;
926 last_map = map_until;
927 if (map_until != num)
928 goto again;
929
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400930 return ret;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200931
932out_of_memory:
Tao Chen77387b82015-04-01 15:04:22 +0000933 pr_alert("%s: out of memory\n", __func__);
Bob Liud4bf0062015-11-14 11:12:19 +0800934 put_free_pages(ring, pages_to_gnt, segs_to_map);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200935 return -ENOMEM;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400936}
937
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200938static int xen_blkbk_map_seg(struct pending_req *pending_req)
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200939{
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200940 int rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200941
Bob Liu59795702015-11-14 11:12:15 +0800942 rc = xen_blkbk_map(pending_req->ring, pending_req->segments,
Julien Grall6684fa12015-06-17 15:28:08 +0100943 pending_req->nr_segs,
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200944 (pending_req->operation != BLKIF_OP_READ));
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200945
946 return rc;
947}
948
949static int xen_blkbk_parse_indirect(struct blkif_request *req,
950 struct pending_req *pending_req,
951 struct seg_buf seg[],
952 struct phys_req *preq)
953{
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200954 struct grant_page **pages = pending_req->indirect_pages;
Bob Liu59795702015-11-14 11:12:15 +0800955 struct xen_blkif_ring *ring = pending_req->ring;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200956 int indirect_grefs, rc, n, nseg, i;
Roger Pau Monne80bfa2f2014-02-04 11:26:15 +0100957 struct blkif_request_segment *segments = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200958
Julien Grall6684fa12015-06-17 15:28:08 +0100959 nseg = pending_req->nr_segs;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200960 indirect_grefs = INDIRECT_PAGES(nseg);
961 BUG_ON(indirect_grefs > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
962
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200963 for (i = 0; i < indirect_grefs; i++)
964 pages[i]->gref = req->u.indirect.indirect_grefs[i];
965
Bob Liu59795702015-11-14 11:12:15 +0800966 rc = xen_blkbk_map(ring, pages, indirect_grefs, true);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200967 if (rc)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200968 goto unmap;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200969
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200970 for (n = 0, i = 0; n < nseg; n++) {
Roger Pau Monné18779142015-11-03 16:40:43 +0000971 uint8_t first_sect, last_sect;
972
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200973 if ((n % SEGS_PER_INDIRECT_FRAME) == 0) {
974 /* Map indirect segments */
975 if (segments)
976 kunmap_atomic(segments);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200977 segments = kmap_atomic(pages[n/SEGS_PER_INDIRECT_FRAME]->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200978 }
979 i = n % SEGS_PER_INDIRECT_FRAME;
Roger Pau Monné18779142015-11-03 16:40:43 +0000980
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200981 pending_req->segments[n]->gref = segments[i].gref;
Roger Pau Monné18779142015-11-03 16:40:43 +0000982
983 first_sect = READ_ONCE(segments[i].first_sect);
984 last_sect = READ_ONCE(segments[i].last_sect);
985 if (last_sect >= (XEN_PAGE_SIZE >> 9) || last_sect < first_sect) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200986 rc = -EINVAL;
987 goto unmap;
988 }
Roger Pau Monné18779142015-11-03 16:40:43 +0000989
990 seg[n].nsec = last_sect - first_sect + 1;
991 seg[n].offset = first_sect << 9;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200992 preq->nr_sects += seg[n].nsec;
993 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200994
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200995unmap:
996 if (segments)
997 kunmap_atomic(segments);
Bob Liu59795702015-11-14 11:12:15 +0800998 xen_blkbk_unmap(ring, pages, indirect_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200999 return rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +02001000}
1001
Bob Liu59795702015-11-14 11:12:15 +08001002static int dispatch_discard_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001003 struct blkif_request *req)
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001004{
1005 int err = 0;
1006 int status = BLKIF_RSP_OKAY;
Bob Liu59795702015-11-14 11:12:15 +08001007 struct xen_blkif *blkif = ring->blkif;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001008 struct block_device *bdev = blkif->vbd.bdev;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -04001009 unsigned long secure;
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001010 struct phys_req preq;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001011
Vegard Nossumea5ec762013-09-05 13:00:14 +02001012 xen_blkif_get(blkif);
1013
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001014 preq.sector_number = req->u.discard.sector_number;
1015 preq.nr_sects = req->u.discard.nr_sectors;
1016
Mike Christiea0226062016-06-05 14:32:09 -05001017 err = xen_vbd_translate(&preq, blkif, REQ_OP_WRITE);
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001018 if (err) {
Tao Chen77387b82015-04-01 15:04:22 +00001019 pr_warn("access denied: DISCARD [%llu->%llu] on dev=%04x\n",
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001020 preq.sector_number,
1021 preq.sector_number + preq.nr_sects, blkif->vbd.pdevice);
1022 goto fail_response;
1023 }
Bob Liudb6fbc12015-12-09 07:44:02 +08001024 ring->st_ds_req++;
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001025
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -04001026 secure = (blkif->vbd.discard_secure &&
1027 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
1028 BLKDEV_DISCARD_SECURE : 0;
1029
1030 err = blkdev_issue_discard(bdev, req->u.discard.sector_number,
1031 req->u.discard.nr_sectors,
1032 GFP_KERNEL, secure);
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -05001033fail_response:
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001034 if (err == -EOPNOTSUPP) {
Tao Chen77387b82015-04-01 15:04:22 +00001035 pr_debug("discard op failed, not supported\n");
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001036 status = BLKIF_RSP_EOPNOTSUPP;
1037 } else if (err)
1038 status = BLKIF_RSP_ERROR;
1039
Bob Liu59795702015-11-14 11:12:15 +08001040 make_response(ring, req->u.discard.id, req->operation, status);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001041 xen_blkif_put(blkif);
1042 return err;
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001043}
1044
Bob Liu59795702015-11-14 11:12:15 +08001045static int dispatch_other_io(struct xen_blkif_ring *ring,
David Vrabel0e367ae2013-03-07 17:32:01 +00001046 struct blkif_request *req,
1047 struct pending_req *pending_req)
1048{
Bob Liu59795702015-11-14 11:12:15 +08001049 free_req(ring, pending_req);
1050 make_response(ring, req->u.other.id, req->operation,
David Vrabel0e367ae2013-03-07 17:32:01 +00001051 BLKIF_RSP_EOPNOTSUPP);
1052 return -EIO;
1053}
1054
Bob Liu59795702015-11-14 11:12:15 +08001055static void xen_blk_drain_io(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001056{
Bob Liu59795702015-11-14 11:12:15 +08001057 struct xen_blkif *blkif = ring->blkif;
1058
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001059 atomic_set(&blkif->drain, 1);
1060 do {
Bob Liu59795702015-11-14 11:12:15 +08001061 if (atomic_read(&ring->inflight) == 0)
Konrad Rzeszutek Wilk6927d922011-10-17 14:27:48 -04001062 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001063 wait_for_completion_interruptible_timeout(
1064 &blkif->drain_complete, HZ);
1065
1066 if (!atomic_read(&blkif->drain))
1067 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001068 } while (!kthread_should_stop());
1069 atomic_set(&blkif->drain, 0);
1070}
1071
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -04001072/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001073 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001074 */
1075
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001076static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001077{
1078 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -04001079 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001080 (error == -EOPNOTSUPP)) {
Tao Chen77387b82015-04-01 15:04:22 +00001081 pr_debug("flush diskcache op failed, not supported\n");
Bob Liu59795702015-11-14 11:12:15 +08001082 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->ring->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001083 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001084 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
1085 (error == -EOPNOTSUPP)) {
Tao Chen77387b82015-04-01 15:04:22 +00001086 pr_debug("write barrier op failed, not supported\n");
Bob Liu59795702015-11-14 11:12:15 +08001087 xen_blkbk_barrier(XBT_NIL, pending_req->ring->blkif->be, 0);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001088 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001089 } else if (error) {
Tao Chen77387b82015-04-01 15:04:22 +00001090 pr_debug("Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001091 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001092 pending_req->status = BLKIF_RSP_ERROR;
1093 }
1094
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001095 /*
1096 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001097 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001098 * the proper response on the ring.
1099 */
Jennifer Herbertc43cf3e2015-01-05 16:49:22 +00001100 if (atomic_dec_and_test(&pending_req->pendcnt))
1101 xen_blkbk_unmap_and_respond(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001102}
1103
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001104/*
1105 * bio callback.
1106 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001107static void end_block_io_op(struct bio *bio)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001108{
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001109 __end_block_io_op(bio->bi_private, bio->bi_error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001110 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001111}
1112
1113
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001114
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001115/*
1116 * Function to copy the from the ring buffer the 'struct blkif_request'
1117 * (which has the sectors we want, number of them, grant references, etc),
1118 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001119 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001120static int
Bob Liu59795702015-11-14 11:12:15 +08001121__do_block_io_op(struct xen_blkif_ring *ring)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001122{
Bob Liu59795702015-11-14 11:12:15 +08001123 union blkif_back_rings *blk_rings = &ring->blk_rings;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001124 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001125 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001126 RING_IDX rc, rp;
1127 int more_to_do = 0;
1128
1129 rc = blk_rings->common.req_cons;
1130 rp = blk_rings->common.sring->req_prod;
1131 rmb(); /* Ensure we see queued requests up to 'rp'. */
1132
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -05001133 if (RING_REQUEST_PROD_OVERFLOW(&blk_rings->common, rp)) {
1134 rc = blk_rings->common.rsp_prod_pvt;
Tao Chen77387b82015-04-01 15:04:22 +00001135 pr_warn("Frontend provided bogus ring requests (%d - %d = %d). Halting ring processing on dev=%04x\n",
Bob Liu59795702015-11-14 11:12:15 +08001136 rp, rc, rp - rc, ring->blkif->vbd.pdevice);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -05001137 return -EACCES;
1138 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001139 while (rc != rp) {
1140
1141 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
1142 break;
1143
Keir Fraser8270b452009-03-06 08:29:15 +00001144 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001145 more_to_do = 1;
1146 break;
1147 }
1148
Bob Liu59795702015-11-14 11:12:15 +08001149 pending_req = alloc_req(ring);
Keir Fraser8270b452009-03-06 08:29:15 +00001150 if (NULL == pending_req) {
Bob Liudb6fbc12015-12-09 07:44:02 +08001151 ring->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001152 more_to_do = 1;
1153 break;
1154 }
1155
Bob Liu59795702015-11-14 11:12:15 +08001156 switch (ring->blkif->blk_protocol) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001157 case BLKIF_PROTOCOL_NATIVE:
1158 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
1159 break;
1160 case BLKIF_PROTOCOL_X86_32:
1161 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
1162 break;
1163 case BLKIF_PROTOCOL_X86_64:
1164 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
1165 break;
1166 default:
1167 BUG();
1168 }
1169 blk_rings->common.req_cons = ++rc; /* before make_response() */
1170
1171 /* Apply all sanity checks to /private copy/ of request. */
1172 barrier();
David Vrabel0e367ae2013-03-07 17:32:01 +00001173
1174 switch (req.operation) {
1175 case BLKIF_OP_READ:
1176 case BLKIF_OP_WRITE:
1177 case BLKIF_OP_WRITE_BARRIER:
1178 case BLKIF_OP_FLUSH_DISKCACHE:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001179 case BLKIF_OP_INDIRECT:
Bob Liu59795702015-11-14 11:12:15 +08001180 if (dispatch_rw_block_io(ring, &req, pending_req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001181 goto done;
1182 break;
1183 case BLKIF_OP_DISCARD:
Bob Liu59795702015-11-14 11:12:15 +08001184 free_req(ring, pending_req);
1185 if (dispatch_discard_io(ring, &req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001186 goto done;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001187 break;
David Vrabel0e367ae2013-03-07 17:32:01 +00001188 default:
Bob Liu59795702015-11-14 11:12:15 +08001189 if (dispatch_other_io(ring, &req, pending_req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001190 goto done;
1191 break;
1192 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001193
1194 /* Yield point for this unbounded loop. */
1195 cond_resched();
1196 }
David Vrabel0e367ae2013-03-07 17:32:01 +00001197done:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001198 return more_to_do;
1199}
1200
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001201static int
Bob Liu59795702015-11-14 11:12:15 +08001202do_block_io_op(struct xen_blkif_ring *ring)
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001203{
Bob Liu59795702015-11-14 11:12:15 +08001204 union blkif_back_rings *blk_rings = &ring->blk_rings;
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001205 int more_to_do;
1206
1207 do {
Bob Liu59795702015-11-14 11:12:15 +08001208 more_to_do = __do_block_io_op(ring);
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001209 if (more_to_do)
1210 break;
1211
1212 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
1213 } while (more_to_do);
1214
1215 return more_to_do;
1216}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001217/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001218 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
1219 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001220 */
Bob Liu59795702015-11-14 11:12:15 +08001221static int dispatch_rw_block_io(struct xen_blkif_ring *ring,
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -04001222 struct blkif_request *req,
1223 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001224{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001225 struct phys_req preq;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001226 struct seg_buf *seg = pending_req->seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001227 unsigned int nseg;
1228 struct bio *bio = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001229 struct bio **biolist = pending_req->biolist;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001230 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001231 int operation;
Mike Christiea0226062016-06-05 14:32:09 -05001232 int operation_flags = 0;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001233 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001234 bool drain = false;
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001235 struct grant_page **pages = pending_req->segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001236 unsigned short req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001237
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001238 req_operation = req->operation == BLKIF_OP_INDIRECT ?
1239 req->u.indirect.indirect_op : req->operation;
Julien Grall67de5df2015-05-05 16:25:56 +01001240
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001241 if ((req->operation == BLKIF_OP_INDIRECT) &&
1242 (req_operation != BLKIF_OP_READ) &&
1243 (req_operation != BLKIF_OP_WRITE)) {
Tao Chen77387b82015-04-01 15:04:22 +00001244 pr_debug("Invalid indirect operation (%u)\n", req_operation);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001245 goto fail_response;
1246 }
1247
1248 switch (req_operation) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001249 case BLKIF_OP_READ:
Bob Liudb6fbc12015-12-09 07:44:02 +08001250 ring->st_rd_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001251 operation = REQ_OP_READ;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001252 break;
1253 case BLKIF_OP_WRITE:
Bob Liudb6fbc12015-12-09 07:44:02 +08001254 ring->st_wr_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001255 operation = REQ_OP_WRITE;
1256 operation_flags = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001257 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001258 case BLKIF_OP_WRITE_BARRIER:
1259 drain = true;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -04001260 case BLKIF_OP_FLUSH_DISKCACHE:
Bob Liudb6fbc12015-12-09 07:44:02 +08001261 ring->st_f_req++;
Mike Christiea0226062016-06-05 14:32:09 -05001262 operation = REQ_OP_WRITE;
1263 operation_flags = WRITE_FLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001264 break;
1265 default:
1266 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001267 goto fail_response;
1268 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001269 }
1270
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001271 /* Check that the number of segments is sane. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001272 nseg = req->operation == BLKIF_OP_INDIRECT ?
1273 req->u.indirect.nr_segments : req->u.rw.nr_segments;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001274
Mike Christiea0226062016-06-05 14:32:09 -05001275 if (unlikely(nseg == 0 && operation_flags != WRITE_FLUSH) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001276 unlikely((req->operation != BLKIF_OP_INDIRECT) &&
1277 (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) ||
1278 unlikely((req->operation == BLKIF_OP_INDIRECT) &&
1279 (nseg > MAX_INDIRECT_SEGMENTS))) {
Tao Chen77387b82015-04-01 15:04:22 +00001280 pr_debug("Bad number of segments in request (%d)\n", nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001281 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001282 goto fail_response;
1283 }
1284
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001285 preq.nr_sects = 0;
1286
Bob Liu59795702015-11-14 11:12:15 +08001287 pending_req->ring = ring;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001288 pending_req->id = req->u.rw.id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001289 pending_req->operation = req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001290 pending_req->status = BLKIF_RSP_OKAY;
Julien Grall6684fa12015-06-17 15:28:08 +01001291 pending_req->nr_segs = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001292
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001293 if (req->operation != BLKIF_OP_INDIRECT) {
1294 preq.dev = req->u.rw.handle;
1295 preq.sector_number = req->u.rw.sector_number;
1296 for (i = 0; i < nseg; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001297 pages[i]->gref = req->u.rw.seg[i].gref;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001298 seg[i].nsec = req->u.rw.seg[i].last_sect -
1299 req->u.rw.seg[i].first_sect + 1;
1300 seg[i].offset = (req->u.rw.seg[i].first_sect << 9);
Julien Grall67de5df2015-05-05 16:25:56 +01001301 if ((req->u.rw.seg[i].last_sect >= (XEN_PAGE_SIZE >> 9)) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001302 (req->u.rw.seg[i].last_sect <
1303 req->u.rw.seg[i].first_sect))
1304 goto fail_response;
1305 preq.nr_sects += seg[i].nsec;
1306 }
1307 } else {
1308 preq.dev = req->u.indirect.handle;
1309 preq.sector_number = req->u.indirect.sector_number;
1310 if (xen_blkbk_parse_indirect(req, pending_req, seg, &preq))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001311 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001312 }
1313
Bob Liu59795702015-11-14 11:12:15 +08001314 if (xen_vbd_translate(&preq, ring->blkif, operation) != 0) {
Tao Chen77387b82015-04-01 15:04:22 +00001315 pr_debug("access denied: %s of [%llu,%llu] on dev=%04x\n",
Mike Christiea0226062016-06-05 14:32:09 -05001316 operation == REQ_OP_READ ? "read" : "write",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001317 preq.sector_number,
Chen Ganga72d9002013-02-28 10:34:23 +08001318 preq.sector_number + preq.nr_sects,
Bob Liu59795702015-11-14 11:12:15 +08001319 ring->blkif->vbd.pdevice);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001320 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001321 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001322
1323 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -04001324 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001325 * is set there.
1326 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001327 for (i = 0; i < nseg; i++) {
1328 if (((int)preq.sector_number|(int)seg[i].nsec) &
1329 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Tao Chen77387b82015-04-01 15:04:22 +00001330 pr_debug("Misaligned I/O request from domain %d\n",
Bob Liu59795702015-11-14 11:12:15 +08001331 ring->blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001332 goto fail_response;
1333 }
1334 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001335
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001336 /* Wait on all outstanding I/O's and once that has been completed
1337 * issue the WRITE_FLUSH.
1338 */
1339 if (drain)
Bob Liu59795702015-11-14 11:12:15 +08001340 xen_blk_drain_io(pending_req->ring);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001341
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001342 /*
1343 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001344 * set gnttab_set_unmap_op on all of the grant references and perform
1345 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -04001346 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001347 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001348 if (xen_blkbk_map_seg(pending_req))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001349 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001350
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001351 /*
1352 * This corresponding xen_blkif_put is done in __end_block_io_op, or
1353 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
1354 */
Bob Liu59795702015-11-14 11:12:15 +08001355 xen_blkif_get(ring->blkif);
1356 atomic_inc(&ring->inflight);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001357
1358 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001359 while ((bio == NULL) ||
1360 (bio_add_page(bio,
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001361 pages[i]->page,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001362 seg[i].nsec << 9,
Roger Pau Monneffb1dab2013-03-18 17:49:32 +01001363 seg[i].offset) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001364
Roger Pau Monne1e0f7a22013-06-22 09:59:17 +02001365 int nr_iovecs = min_t(int, (nseg-i), BIO_MAX_PAGES);
1366 bio = bio_alloc(GFP_KERNEL, nr_iovecs);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001367 if (unlikely(bio == NULL))
1368 goto fail_put_bio;
1369
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001370 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001371 bio->bi_bdev = preq.bdev;
1372 bio->bi_private = pending_req;
1373 bio->bi_end_io = end_block_io_op;
Kent Overstreet4f024f32013-10-11 15:44:27 -07001374 bio->bi_iter.bi_sector = preq.sector_number;
Mike Christiea0226062016-06-05 14:32:09 -05001375 bio_set_op_attrs(bio, operation, operation_flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001376 }
1377
1378 preq.sector_number += seg[i].nsec;
1379 }
1380
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001381 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001382 if (!bio) {
Mike Christiea0226062016-06-05 14:32:09 -05001383 BUG_ON(operation_flags != WRITE_FLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -04001384
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001385 bio = bio_alloc(GFP_KERNEL, 0);
1386 if (unlikely(bio == NULL))
1387 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001388
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001389 biolist[nbio++] = bio;
1390 bio->bi_bdev = preq.bdev;
1391 bio->bi_private = pending_req;
1392 bio->bi_end_io = end_block_io_op;
Mike Christiea0226062016-06-05 14:32:09 -05001393 bio_set_op_attrs(bio, operation, operation_flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001394 }
1395
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001396 atomic_set(&pending_req->pendcnt, nbio);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001397 blk_start_plug(&plug);
1398
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001399 for (i = 0; i < nbio; i++)
Mike Christie4e49ea42016-06-05 14:31:41 -05001400 submit_bio(biolist[i]);
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001401
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001402 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -04001403 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001404
Mike Christiea0226062016-06-05 14:32:09 -05001405 if (operation == REQ_OP_READ)
Bob Liudb6fbc12015-12-09 07:44:02 +08001406 ring->st_rd_sect += preq.nr_sects;
Mike Christiea0226062016-06-05 14:32:09 -05001407 else if (operation == REQ_OP_WRITE)
Bob Liudb6fbc12015-12-09 07:44:02 +08001408 ring->st_wr_sect += preq.nr_sects;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001409
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001410 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001411
1412 fail_flush:
Bob Liu59795702015-11-14 11:12:15 +08001413 xen_blkbk_unmap(ring, pending_req->segments,
Julien Grall6684fa12015-06-17 15:28:08 +01001414 pending_req->nr_segs);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001415 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -04001416 /* Haven't submitted any bio's yet. */
Bob Liu59795702015-11-14 11:12:15 +08001417 make_response(ring, req->u.rw.id, req_operation, BLKIF_RSP_ERROR);
1418 free_req(ring, pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001419 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001420 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001421
1422 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001423 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001424 bio_put(biolist[i]);
Jan Beulich0e5e0982013-03-11 09:39:55 +00001425 atomic_set(&pending_req->pendcnt, 1);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001426 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001427 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001428 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001429}
1430
1431
1432
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001433/*
1434 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001435 */
Bob Liu59795702015-11-14 11:12:15 +08001436static void make_response(struct xen_blkif_ring *ring, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001437 unsigned short op, int st)
1438{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001439 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001440 unsigned long flags;
Bob Liu59795702015-11-14 11:12:15 +08001441 union blkif_back_rings *blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001442 int notify;
1443
1444 resp.id = id;
1445 resp.operation = op;
1446 resp.status = st;
1447
Bob Liu59795702015-11-14 11:12:15 +08001448 spin_lock_irqsave(&ring->blk_ring_lock, flags);
1449 blk_rings = &ring->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001450 /* Place on the response ring for the relevant domain. */
Bob Liu59795702015-11-14 11:12:15 +08001451 switch (ring->blkif->blk_protocol) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001452 case BLKIF_PROTOCOL_NATIVE:
1453 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
1454 &resp, sizeof(resp));
1455 break;
1456 case BLKIF_PROTOCOL_X86_32:
1457 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
1458 &resp, sizeof(resp));
1459 break;
1460 case BLKIF_PROTOCOL_X86_64:
1461 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
1462 &resp, sizeof(resp));
1463 break;
1464 default:
1465 BUG();
1466 }
1467 blk_rings->common.rsp_prod_pvt++;
1468 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Bob Liu59795702015-11-14 11:12:15 +08001469 spin_unlock_irqrestore(&ring->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001470 if (notify)
Bob Liu59795702015-11-14 11:12:15 +08001471 notify_remote_via_irq(ring->irq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001472}
1473
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001474static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001475{
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001476 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001477
Daniel De Graafb2167ba2011-11-28 11:49:05 -05001478 if (!xen_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001479 return -ENODEV;
1480
Julien Grall9cce2912015-10-13 17:50:11 +01001481 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08001482 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01001483 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
1484 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08001485 }
1486
Bob Liud62d8602015-11-14 11:12:17 +08001487 if (xenblk_max_queues == 0)
1488 xenblk_max_queues = num_online_cpus();
1489
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001490 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001491 if (rc)
1492 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001493
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001494 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001495 if (rc)
1496 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001497
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001498 failed_init:
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001499 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001500}
1501
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001502module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001503
1504MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +02001505MODULE_ALIAS("xen-backend:vbd");