blob: bf4b9d282c042ec4d5b3c31a9d3192bd059afcc5 [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
37#include <linux/spinlock.h>
38#include <linux/kthread.h>
39#include <linux/list.h>
40#include <linux/delay.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080041#include <linux/freezer.h>
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020042#include <linux/bitmap.h>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070043
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080044#include <xen/events.h>
45#include <xen/page.h>
Stefano Stabellinie79affc2012-08-08 17:21:14 +000046#include <xen/xen.h>
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080047#include <asm/xen/hypervisor.h>
48#include <asm/xen/hypercall.h>
Roger Pau Monne087ffec2013-02-14 11:12:09 +010049#include <xen/balloon.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040050#include "common.h"
51
52/*
Roger Pau Monnec6cc1422013-04-17 20:18:56 +020053 * Maximum number of unused free pages to keep in the internal buffer.
54 * Setting this to a value too low will reduce memory used in each backend,
55 * but can have a performance penalty.
56 *
57 * A sane value is xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST, but can
58 * be set to a lower value that might degrade performance on some intensive
59 * IO workloads.
60 */
61
Roger Pau Monne402b27f2013-04-18 16:06:54 +020062static int xen_blkif_max_buffer_pages = 1024;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +020063module_param_named(max_buffer_pages, xen_blkif_max_buffer_pages, int, 0644);
64MODULE_PARM_DESC(max_buffer_pages,
65"Maximum number of free pages to keep in each block backend buffer");
66
Roger Pau Monne3f3aad52013-04-17 20:18:57 +020067/*
68 * Maximum number of grants to map persistently in blkback. For maximum
69 * performance this should be the total numbers of grants that can be used
70 * to fill the ring, but since this might become too high, specially with
71 * the use of indirect descriptors, we set it to a value that provides good
72 * performance without using too much memory.
73 *
74 * When the list of persistent grants is full we clean it up using a LRU
75 * algorithm.
76 */
77
Roger Pau Monne402b27f2013-04-18 16:06:54 +020078static int xen_blkif_max_pgrants = 1056;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +020079module_param_named(max_persistent_grants, xen_blkif_max_pgrants, int, 0644);
80MODULE_PARM_DESC(max_persistent_grants,
81 "Maximum number of grants to map persistently");
82
83/*
84 * The LRU mechanism to clean the lists of persistent grants needs to
85 * be executed periodically. The time interval between consecutive executions
86 * of the purge mechanism is set in ms.
87 */
88#define LRU_INTERVAL 100
89
90/*
91 * When the persistent grants list is full we will remove unused grants
92 * from the list. The percent number of grants to be removed at each LRU
93 * execution.
94 */
95#define LRU_PERCENT_CLEAN 5
96
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040097/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040098static unsigned int log_stats;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040099module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400100
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400101#define BLKBACK_INVALID_HANDLE (~0)
102
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200103/* Number of free pages to remove on each call to free_xenballooned_pages */
104#define NUM_BATCH_FREE_PAGES 10
105
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200106static inline int get_free_page(struct xen_blkif *blkif, struct page **page)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400107{
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200108 unsigned long flags;
109
110 spin_lock_irqsave(&blkif->free_pages_lock, flags);
111 if (list_empty(&blkif->free_pages)) {
112 BUG_ON(blkif->free_pages_num != 0);
113 spin_unlock_irqrestore(&blkif->free_pages_lock, flags);
114 return alloc_xenballooned_pages(1, page, false);
115 }
116 BUG_ON(blkif->free_pages_num == 0);
117 page[0] = list_first_entry(&blkif->free_pages, struct page, lru);
118 list_del(&page[0]->lru);
119 blkif->free_pages_num--;
120 spin_unlock_irqrestore(&blkif->free_pages_lock, flags);
121
122 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400123}
124
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200125static inline void put_free_pages(struct xen_blkif *blkif, struct page **page,
126 int num)
127{
128 unsigned long flags;
129 int i;
130
131 spin_lock_irqsave(&blkif->free_pages_lock, flags);
132 for (i = 0; i < num; i++)
133 list_add(&page[i]->lru, &blkif->free_pages);
134 blkif->free_pages_num += num;
135 spin_unlock_irqrestore(&blkif->free_pages_lock, flags);
136}
137
138static inline void shrink_free_pagepool(struct xen_blkif *blkif, int num)
139{
140 /* Remove requested pages in batches of NUM_BATCH_FREE_PAGES */
141 struct page *page[NUM_BATCH_FREE_PAGES];
142 unsigned int num_pages = 0;
143 unsigned long flags;
144
145 spin_lock_irqsave(&blkif->free_pages_lock, flags);
146 while (blkif->free_pages_num > num) {
147 BUG_ON(list_empty(&blkif->free_pages));
148 page[num_pages] = list_first_entry(&blkif->free_pages,
149 struct page, lru);
150 list_del(&page[num_pages]->lru);
151 blkif->free_pages_num--;
152 if (++num_pages == NUM_BATCH_FREE_PAGES) {
153 spin_unlock_irqrestore(&blkif->free_pages_lock, flags);
154 free_xenballooned_pages(num_pages, page);
155 spin_lock_irqsave(&blkif->free_pages_lock, flags);
156 num_pages = 0;
157 }
158 }
159 spin_unlock_irqrestore(&blkif->free_pages_lock, flags);
160 if (num_pages != 0)
161 free_xenballooned_pages(num_pages, page);
162}
163
164#define vaddr(page) ((unsigned long)pfn_to_kaddr(page_to_pfn(page)))
165
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400166static int do_block_io_op(struct xen_blkif *blkif);
167static int dispatch_rw_block_io(struct xen_blkif *blkif,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400168 struct blkif_request *req,
169 struct pending_req *pending_req);
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400170static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400171 unsigned short op, int st);
172
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100173#define foreach_grant_safe(pos, n, rbtree, node) \
174 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
Roger Pau Monne217fd5e2013-03-18 17:49:33 +0100175 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL; \
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200176 &(pos)->node != NULL; \
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100177 (pos) = container_of(n, typeof(*(pos)), node), \
178 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200179
180
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200181/*
182 * We don't need locking around the persistent grant helpers
183 * because blkback uses a single-thread for each backed, so we
184 * can be sure that this functions will never be called recursively.
185 *
186 * The only exception to that is put_persistent_grant, that can be called
187 * from interrupt context (by xen_blkbk_unmap), so we have to use atomic
188 * bit operations to modify the flags of a persistent grant and to count
189 * the number of used grants.
190 */
191static int add_persistent_gnt(struct xen_blkif *blkif,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200192 struct persistent_gnt *persistent_gnt)
193{
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200194 struct rb_node **new = NULL, *parent = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200195 struct persistent_gnt *this;
196
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200197 if (blkif->persistent_gnt_c >= xen_blkif_max_pgrants) {
198 if (!blkif->vbd.overflow_max_grants)
199 blkif->vbd.overflow_max_grants = 1;
200 return -EBUSY;
201 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200202 /* Figure out where to put new node */
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200203 new = &blkif->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200204 while (*new) {
205 this = container_of(*new, struct persistent_gnt, node);
206
207 parent = *new;
208 if (persistent_gnt->gnt < this->gnt)
209 new = &((*new)->rb_left);
210 else if (persistent_gnt->gnt > this->gnt)
211 new = &((*new)->rb_right);
212 else {
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200213 pr_alert_ratelimited(DRV_PFX " trying to add a gref that's already in the tree\n");
214 return -EINVAL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200215 }
216 }
217
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200218 bitmap_zero(persistent_gnt->flags, PERSISTENT_GNT_FLAGS_SIZE);
219 set_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200220 /* Add new node and rebalance tree. */
221 rb_link_node(&(persistent_gnt->node), parent, new);
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200222 rb_insert_color(&(persistent_gnt->node), &blkif->persistent_gnts);
223 blkif->persistent_gnt_c++;
224 atomic_inc(&blkif->persistent_gnt_in_use);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200225 return 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200226}
227
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200228static struct persistent_gnt *get_persistent_gnt(struct xen_blkif *blkif,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200229 grant_ref_t gref)
230{
231 struct persistent_gnt *data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200232 struct rb_node *node = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200233
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200234 node = blkif->persistent_gnts.rb_node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200235 while (node) {
236 data = container_of(node, struct persistent_gnt, node);
237
238 if (gref < data->gnt)
239 node = node->rb_left;
240 else if (gref > data->gnt)
241 node = node->rb_right;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200242 else {
243 if(test_bit(PERSISTENT_GNT_ACTIVE, data->flags)) {
244 pr_alert_ratelimited(DRV_PFX " requesting a grant already in use\n");
245 return NULL;
246 }
247 set_bit(PERSISTENT_GNT_ACTIVE, data->flags);
248 atomic_inc(&blkif->persistent_gnt_in_use);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200249 return data;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200250 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200251 }
252 return NULL;
253}
254
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200255static void put_persistent_gnt(struct xen_blkif *blkif,
256 struct persistent_gnt *persistent_gnt)
257{
258 if(!test_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags))
259 pr_alert_ratelimited(DRV_PFX " freeing a grant already unused");
260 set_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags);
261 clear_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags);
262 atomic_dec(&blkif->persistent_gnt_in_use);
263}
264
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200265static void free_persistent_gnts(struct xen_blkif *blkif, struct rb_root *root,
266 unsigned int num)
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100267{
268 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
269 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
270 struct persistent_gnt *persistent_gnt;
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100271 struct rb_node *n;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100272 int ret = 0;
273 int segs_to_unmap = 0;
274
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100275 foreach_grant_safe(persistent_gnt, n, root, node) {
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100276 BUG_ON(persistent_gnt->handle ==
277 BLKBACK_INVALID_HANDLE);
278 gnttab_set_unmap_op(&unmap[segs_to_unmap],
279 (unsigned long) pfn_to_kaddr(page_to_pfn(
280 persistent_gnt->page)),
281 GNTMAP_host_map,
282 persistent_gnt->handle);
283
284 pages[segs_to_unmap] = persistent_gnt->page;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100285
286 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST ||
287 !rb_next(&persistent_gnt->node)) {
288 ret = gnttab_unmap_refs(unmap, NULL, pages,
289 segs_to_unmap);
290 BUG_ON(ret);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200291 put_free_pages(blkif, pages, segs_to_unmap);
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100292 segs_to_unmap = 0;
293 }
Roger Pau Monne7dc34112012-12-04 15:21:52 +0100294
295 rb_erase(&persistent_gnt->node, root);
296 kfree(persistent_gnt);
297 num--;
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100298 }
299 BUG_ON(num != 0);
300}
301
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200302static void unmap_purged_grants(struct work_struct *work)
303{
304 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
305 struct page *pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
306 struct persistent_gnt *persistent_gnt;
307 int ret, segs_to_unmap = 0;
308 struct xen_blkif *blkif = container_of(work, typeof(*blkif), persistent_purge_work);
309
310 while(!list_empty(&blkif->persistent_purge_list)) {
311 persistent_gnt = list_first_entry(&blkif->persistent_purge_list,
312 struct persistent_gnt,
313 remove_node);
314 list_del(&persistent_gnt->remove_node);
315
316 gnttab_set_unmap_op(&unmap[segs_to_unmap],
317 vaddr(persistent_gnt->page),
318 GNTMAP_host_map,
319 persistent_gnt->handle);
320
321 pages[segs_to_unmap] = persistent_gnt->page;
322
323 if (++segs_to_unmap == BLKIF_MAX_SEGMENTS_PER_REQUEST) {
324 ret = gnttab_unmap_refs(unmap, NULL, pages,
325 segs_to_unmap);
326 BUG_ON(ret);
327 put_free_pages(blkif, pages, segs_to_unmap);
328 segs_to_unmap = 0;
329 }
330 kfree(persistent_gnt);
331 }
332 if (segs_to_unmap > 0) {
333 ret = gnttab_unmap_refs(unmap, NULL, pages, segs_to_unmap);
334 BUG_ON(ret);
335 put_free_pages(blkif, pages, segs_to_unmap);
336 }
337}
338
339static void purge_persistent_gnt(struct xen_blkif *blkif)
340{
341 struct persistent_gnt *persistent_gnt;
342 struct rb_node *n;
343 unsigned int num_clean, total;
Roger Pau Monne2d910542013-06-21 12:56:53 +0200344 bool scan_used = false, clean_used = false;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200345 struct rb_root *root;
346
347 if (blkif->persistent_gnt_c < xen_blkif_max_pgrants ||
348 (blkif->persistent_gnt_c == xen_blkif_max_pgrants &&
349 !blkif->vbd.overflow_max_grants)) {
350 return;
351 }
352
353 if (work_pending(&blkif->persistent_purge_work)) {
354 pr_alert_ratelimited(DRV_PFX "Scheduled work from previous purge is still pending, cannot purge list\n");
355 return;
356 }
357
358 num_clean = (xen_blkif_max_pgrants / 100) * LRU_PERCENT_CLEAN;
359 num_clean = blkif->persistent_gnt_c - xen_blkif_max_pgrants + num_clean;
360 num_clean = min(blkif->persistent_gnt_c, num_clean);
Roger Pau Monne2d910542013-06-21 12:56:53 +0200361 if ((num_clean == 0) ||
362 (num_clean > (blkif->persistent_gnt_c - atomic_read(&blkif->persistent_gnt_in_use))))
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200363 return;
364
365 /*
366 * At this point, we can assure that there will be no calls
367 * to get_persistent_grant (because we are executing this code from
368 * xen_blkif_schedule), there can only be calls to put_persistent_gnt,
369 * which means that the number of currently used grants will go down,
370 * but never up, so we will always be able to remove the requested
371 * number of grants.
372 */
373
374 total = num_clean;
375
376 pr_debug(DRV_PFX "Going to purge %u persistent grants\n", num_clean);
377
378 INIT_LIST_HEAD(&blkif->persistent_purge_list);
379 root = &blkif->persistent_gnts;
380purge_list:
381 foreach_grant_safe(persistent_gnt, n, root, node) {
382 BUG_ON(persistent_gnt->handle ==
383 BLKBACK_INVALID_HANDLE);
384
Roger Pau Monne2d910542013-06-21 12:56:53 +0200385 if (clean_used) {
386 clear_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags);
387 continue;
388 }
389
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200390 if (test_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags))
391 continue;
392 if (!scan_used &&
393 (test_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags)))
394 continue;
395
396 rb_erase(&persistent_gnt->node, root);
397 list_add(&persistent_gnt->remove_node,
398 &blkif->persistent_purge_list);
399 if (--num_clean == 0)
400 goto finished;
401 }
402 /*
403 * If we get here it means we also need to start cleaning
404 * grants that were used since last purge in order to cope
405 * with the requested num
406 */
Roger Pau Monne2d910542013-06-21 12:56:53 +0200407 if (!scan_used && !clean_used) {
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200408 pr_debug(DRV_PFX "Still missing %u purged frames\n", num_clean);
409 scan_used = true;
410 goto purge_list;
411 }
412finished:
Roger Pau Monne2d910542013-06-21 12:56:53 +0200413 if (!clean_used) {
414 pr_debug(DRV_PFX "Finished scanning for grants to clean, removing used flag\n");
415 clean_used = true;
416 goto purge_list;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200417 }
Roger Pau Monne2d910542013-06-21 12:56:53 +0200418
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200419 blkif->persistent_gnt_c -= (total - num_clean);
420 blkif->vbd.overflow_max_grants = 0;
421
422 /* We can defer this work */
423 INIT_WORK(&blkif->persistent_purge_work, unmap_purged_grants);
424 schedule_work(&blkif->persistent_purge_work);
425 pr_debug(DRV_PFX "Purged %u/%u\n", (total - num_clean), total);
426 return;
427}
428
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400429/*
430 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400431 */
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200432static struct pending_req *alloc_req(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400433{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400434 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400435 unsigned long flags;
436
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200437 spin_lock_irqsave(&blkif->pending_free_lock, flags);
438 if (!list_empty(&blkif->pending_free)) {
439 req = list_entry(blkif->pending_free.next, struct pending_req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400440 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400441 list_del(&req->free_list);
442 }
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200443 spin_unlock_irqrestore(&blkif->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400444 return req;
445}
446
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400447/*
448 * Return the 'pending_req' structure back to the freepool. We also
449 * wake up the thread if it was waiting for a free page.
450 */
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200451static void free_req(struct xen_blkif *blkif, struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400452{
453 unsigned long flags;
454 int was_empty;
455
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200456 spin_lock_irqsave(&blkif->pending_free_lock, flags);
457 was_empty = list_empty(&blkif->pending_free);
458 list_add(&req->free_list, &blkif->pending_free);
459 spin_unlock_irqrestore(&blkif->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400460 if (was_empty)
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200461 wake_up(&blkif->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400462}
463
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400464/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400465 * Routines for managing virtual block devices (vbds).
466 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400467static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
468 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400469{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400470 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400471 int rc = -EACCES;
472
473 if ((operation != READ) && vbd->readonly)
474 goto out;
475
Jan Beulich8ab52152011-05-17 11:07:05 +0100476 if (likely(req->nr_sects)) {
477 blkif_sector_t end = req->sector_number + req->nr_sects;
478
479 if (unlikely(end < req->sector_number))
480 goto out;
481 if (unlikely(end > vbd_sz(vbd)))
482 goto out;
483 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400484
485 req->dev = vbd->pdevice;
486 req->bdev = vbd->bdev;
487 rc = 0;
488
489 out:
490 return rc;
491}
492
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400493static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400494{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400495 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400496 struct xenbus_transaction xbt;
497 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400498 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400499 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400500
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400501 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400502 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400503 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400504 vbd->size = new_size;
505again:
506 err = xenbus_transaction_start(&xbt);
507 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400508 pr_warn(DRV_PFX "Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400509 return;
510 }
511 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400512 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400513 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400514 pr_warn(DRV_PFX "Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400515 goto abort;
516 }
517 /*
518 * Write the current state; we will use this to synchronize
519 * the front-end. If the current state is "connected" the
520 * front-end will get the new size information online.
521 */
522 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
523 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400524 pr_warn(DRV_PFX "Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400525 goto abort;
526 }
527
528 err = xenbus_transaction_end(xbt, 0);
529 if (err == -EAGAIN)
530 goto again;
531 if (err)
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400532 pr_warn(DRV_PFX "Error ending transaction");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400533 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400534abort:
535 xenbus_transaction_end(xbt, 1);
536}
537
538/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400539 * Notification from the guest OS.
540 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400541static void blkif_notify_work(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400542{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400543 blkif->waiting_reqs = 1;
544 wake_up(&blkif->wq);
545}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400546
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400547irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400548{
549 blkif_notify_work(dev_id);
550 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400551}
552
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400553/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400554 * SCHEDULER FUNCTIONS
555 */
556
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400557static void print_stats(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400558{
Zoltan Kiss986cacb2013-03-11 16:15:50 +0000559 pr_info("xen-blkback (%s): oo %3llu | rd %4llu | wr %4llu | f %4llu"
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200560 " | ds %4llu | pg: %4u/%4d\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400561 current->comm, blkif->st_oo_req,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800562 blkif->st_rd_req, blkif->st_wr_req,
Roger Pau Monnec1a15d02013-04-17 20:18:55 +0200563 blkif->st_f_req, blkif->st_ds_req,
564 blkif->persistent_gnt_c,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200565 xen_blkif_max_pgrants);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400566 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
567 blkif->st_rd_req = 0;
568 blkif->st_wr_req = 0;
569 blkif->st_oo_req = 0;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800570 blkif->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400571}
572
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400573int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400574{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400575 struct xen_blkif *blkif = arg;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400576 struct xen_vbd *vbd = &blkif->vbd;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200577 unsigned long timeout;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500578 int ret;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400579
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400580 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400581
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400582 while (!kthread_should_stop()) {
583 if (try_to_freeze())
584 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400585 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400586 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400587
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200588 timeout = msecs_to_jiffies(LRU_INTERVAL);
589
590 timeout = wait_event_interruptible_timeout(
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400591 blkif->wq,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200592 blkif->waiting_reqs || kthread_should_stop(),
593 timeout);
594 if (timeout == 0)
595 goto purge_gnt_list;
596 timeout = wait_event_interruptible_timeout(
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200597 blkif->pending_free_wq,
598 !list_empty(&blkif->pending_free) ||
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200599 kthread_should_stop(),
600 timeout);
601 if (timeout == 0)
602 goto purge_gnt_list;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400603
604 blkif->waiting_reqs = 0;
605 smp_mb(); /* clear flag *before* checking for work */
606
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500607 ret = do_block_io_op(blkif);
608 if (ret > 0)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400609 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500610 if (ret == -EACCES)
611 wait_event_interruptible(blkif->shutdown_wq,
612 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400613
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200614purge_gnt_list:
615 if (blkif->vbd.feature_gnt_persistent &&
616 time_after(jiffies, blkif->next_lru)) {
617 purge_persistent_gnt(blkif);
618 blkif->next_lru = jiffies + msecs_to_jiffies(LRU_INTERVAL);
619 }
620
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200621 /* Shrink if we have more than xen_blkif_max_buffer_pages */
622 shrink_free_pagepool(blkif, xen_blkif_max_buffer_pages);
623
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400624 if (log_stats && time_after(jiffies, blkif->st_print))
625 print_stats(blkif);
626 }
627
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200628 /* Since we are shutting down remove all pages from the buffer */
629 shrink_free_pagepool(blkif, 0 /* All */);
630
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200631 /* Free all persistent grant pages */
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100632 if (!RB_EMPTY_ROOT(&blkif->persistent_gnts))
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200633 free_persistent_gnts(blkif, &blkif->persistent_gnts,
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100634 blkif->persistent_gnt_c);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200635
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200636 BUG_ON(!RB_EMPTY_ROOT(&blkif->persistent_gnts));
Roger Pau Monne4d4f2702012-11-16 19:26:48 +0100637 blkif->persistent_gnt_c = 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200638
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400639 if (log_stats)
640 print_stats(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400641
642 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400643 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400644
645 return 0;
646}
647
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400648/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400649 * Unmap the grant references, and also remove the M2P over-rides
650 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400651 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200652static void xen_blkbk_unmap(struct xen_blkif *blkif,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200653 struct grant_page *pages[],
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200654 int num)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400655{
656 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200657 struct page *unmap_pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400658 unsigned int i, invcount = 0;
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400659 int ret;
660
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200661 for (i = 0; i < num; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200662 if (pages[i]->persistent_gnt != NULL) {
663 put_persistent_gnt(blkif, pages[i]->persistent_gnt);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200664 continue;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200665 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200666 if (pages[i]->handle == BLKBACK_INVALID_HANDLE)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400667 continue;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200668 unmap_pages[invcount] = pages[i]->page;
669 gnttab_set_unmap_op(&unmap[invcount], vaddr(pages[i]->page),
670 GNTMAP_host_map, pages[i]->handle);
671 pages[i]->handle = BLKBACK_INVALID_HANDLE;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200672 if (++invcount == BLKIF_MAX_SEGMENTS_PER_REQUEST) {
673 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages,
674 invcount);
675 BUG_ON(ret);
676 put_free_pages(blkif, unmap_pages, invcount);
677 invcount = 0;
678 }
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400679 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200680 if (invcount) {
681 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
682 BUG_ON(ret);
683 put_free_pages(blkif, unmap_pages, invcount);
684 }
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400685}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400686
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200687static int xen_blkbk_map(struct xen_blkif *blkif,
688 struct grant_page *pages[],
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200689 int num, bool ro)
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400690{
691 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200692 struct page *pages_to_gnt[BLKIF_MAX_SEGMENTS_PER_REQUEST];
693 struct persistent_gnt *persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200694 phys_addr_t addr = 0;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200695 int i, seg_idx, new_map_idx;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200696 int segs_to_map = 0;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400697 int ret = 0;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200698 int last_map = 0, map_until = 0;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200699 int use_persistent_gnts;
700
701 use_persistent_gnts = (blkif->vbd.feature_gnt_persistent);
702
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400703 /*
704 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400705 * assign map[..] with the PFN of the page in our domain with the
706 * corresponding grant reference for each page.
707 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200708again:
709 for (i = map_until; i < num; i++) {
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400710 uint32_t flags;
711
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200712 if (use_persistent_gnts)
713 persistent_gnt = get_persistent_gnt(
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200714 blkif,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200715 pages[i]->gref);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200716
717 if (persistent_gnt) {
718 /*
719 * We are using persistent grants and
720 * the grant is already mapped
721 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200722 pages[i]->page = persistent_gnt->page;
723 pages[i]->persistent_gnt = persistent_gnt;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200724 } else {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200725 if (get_free_page(blkif, &pages[i]->page))
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200726 goto out_of_memory;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200727 addr = vaddr(pages[i]->page);
728 pages_to_gnt[segs_to_map] = pages[i]->page;
729 pages[i]->persistent_gnt = NULL;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200730 flags = GNTMAP_host_map;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200731 if (!use_persistent_gnts && ro)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200732 flags |= GNTMAP_readonly;
733 gnttab_set_map_op(&map[segs_to_map++], addr,
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200734 flags, pages[i]->gref,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200735 blkif->domid);
736 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200737 map_until = i + 1;
738 if (segs_to_map == BLKIF_MAX_SEGMENTS_PER_REQUEST)
739 break;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400740 }
741
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200742 if (segs_to_map) {
743 ret = gnttab_map_refs(map, NULL, pages_to_gnt, segs_to_map);
744 BUG_ON(ret);
745 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400746
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400747 /*
748 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400749 * so that when we access vaddr(pending_req,i) it has the contents of
750 * the page from the other domain.
751 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200752 for (seg_idx = last_map, new_map_idx = 0; seg_idx < map_until; seg_idx++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200753 if (!pages[seg_idx]->persistent_gnt) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200754 /* This is a newly mapped grant */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200755 BUG_ON(new_map_idx >= segs_to_map);
756 if (unlikely(map[new_map_idx].status != 0)) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200757 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200758 pages[seg_idx]->handle = BLKBACK_INVALID_HANDLE;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200759 ret |= 1;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200760 goto next;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200761 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200762 pages[seg_idx]->handle = map[new_map_idx].handle;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200763 } else {
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200764 continue;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200765 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200766 if (use_persistent_gnts &&
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200767 blkif->persistent_gnt_c < xen_blkif_max_pgrants) {
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200768 /*
769 * We are using persistent grants, the grant is
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200770 * not mapped but we might have room for it.
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200771 */
772 persistent_gnt = kmalloc(sizeof(struct persistent_gnt),
773 GFP_KERNEL);
774 if (!persistent_gnt) {
775 /*
776 * If we don't have enough memory to
777 * allocate the persistent_gnt struct
778 * map this grant non-persistenly
779 */
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200780 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200781 }
782 persistent_gnt->gnt = map[new_map_idx].ref;
783 persistent_gnt->handle = map[new_map_idx].handle;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200784 persistent_gnt->page = pages[seg_idx]->page;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200785 if (add_persistent_gnt(blkif,
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200786 persistent_gnt)) {
787 kfree(persistent_gnt);
788 persistent_gnt = NULL;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200789 goto next;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200790 }
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200791 pages[seg_idx]->persistent_gnt = persistent_gnt;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200792 pr_debug(DRV_PFX " grant %u added to the tree of persistent grants, using %u/%u\n",
793 persistent_gnt->gnt, blkif->persistent_gnt_c,
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200794 xen_blkif_max_pgrants);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200795 goto next;
796 }
797 if (use_persistent_gnts && !blkif->vbd.overflow_max_grants) {
798 blkif->vbd.overflow_max_grants = 1;
799 pr_debug(DRV_PFX " domain %u, device %#x is using maximum number of persistent grants\n",
800 blkif->domid, blkif->vbd.handle);
801 }
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200802 /*
803 * We could not map this grant persistently, so use it as
804 * a non-persistent grant.
805 */
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200806next:
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200807 new_map_idx++;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400808 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200809 segs_to_map = 0;
810 last_map = map_until;
811 if (map_until != num)
812 goto again;
813
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400814 return ret;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200815
816out_of_memory:
817 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
818 put_free_pages(blkif, pages_to_gnt, segs_to_map);
819 return -ENOMEM;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400820}
821
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200822static int xen_blkbk_map_seg(struct pending_req *pending_req)
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200823{
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200824 int rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200825
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200826 rc = xen_blkbk_map(pending_req->blkif, pending_req->segments,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200827 pending_req->nr_pages,
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200828 (pending_req->operation != BLKIF_OP_READ));
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200829
830 return rc;
831}
832
833static int xen_blkbk_parse_indirect(struct blkif_request *req,
834 struct pending_req *pending_req,
835 struct seg_buf seg[],
836 struct phys_req *preq)
837{
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200838 struct grant_page **pages = pending_req->indirect_pages;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200839 struct xen_blkif *blkif = pending_req->blkif;
840 int indirect_grefs, rc, n, nseg, i;
841 struct blkif_request_segment_aligned *segments = NULL;
842
843 nseg = pending_req->nr_pages;
844 indirect_grefs = INDIRECT_PAGES(nseg);
845 BUG_ON(indirect_grefs > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
846
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200847 for (i = 0; i < indirect_grefs; i++)
848 pages[i]->gref = req->u.indirect.indirect_grefs[i];
849
850 rc = xen_blkbk_map(blkif, pages, indirect_grefs, true);
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200851 if (rc)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200852 goto unmap;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200853
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200854 for (n = 0, i = 0; n < nseg; n++) {
855 if ((n % SEGS_PER_INDIRECT_FRAME) == 0) {
856 /* Map indirect segments */
857 if (segments)
858 kunmap_atomic(segments);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200859 segments = kmap_atomic(pages[n/SEGS_PER_INDIRECT_FRAME]->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200860 }
861 i = n % SEGS_PER_INDIRECT_FRAME;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200862 pending_req->segments[n]->gref = segments[i].gref;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200863 seg[n].nsec = segments[i].last_sect -
864 segments[i].first_sect + 1;
865 seg[n].offset = (segments[i].first_sect << 9);
866 if ((segments[i].last_sect >= (PAGE_SIZE >> 9)) ||
867 (segments[i].last_sect < segments[i].first_sect)) {
868 rc = -EINVAL;
869 goto unmap;
870 }
871 preq->nr_sects += seg[n].nsec;
872 }
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200873
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200874unmap:
875 if (segments)
876 kunmap_atomic(segments);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200877 xen_blkbk_unmap(blkif, pages, indirect_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200878 return rc;
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200879}
880
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400881static int dispatch_discard_io(struct xen_blkif *blkif,
882 struct blkif_request *req)
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800883{
884 int err = 0;
885 int status = BLKIF_RSP_OKAY;
886 struct block_device *bdev = blkif->vbd.bdev;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400887 unsigned long secure;
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -0500888 struct phys_req preq;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800889
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -0500890 preq.sector_number = req->u.discard.sector_number;
891 preq.nr_sects = req->u.discard.nr_sectors;
892
893 err = xen_vbd_translate(&preq, blkif, WRITE);
894 if (err) {
895 pr_warn(DRV_PFX "access denied: DISCARD [%llu->%llu] on dev=%04x\n",
896 preq.sector_number,
897 preq.sector_number + preq.nr_sects, blkif->vbd.pdevice);
898 goto fail_response;
899 }
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400900 blkif->st_ds_req++;
901
902 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400903 secure = (blkif->vbd.discard_secure &&
904 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
905 BLKDEV_DISCARD_SECURE : 0;
906
907 err = blkdev_issue_discard(bdev, req->u.discard.sector_number,
908 req->u.discard.nr_sectors,
909 GFP_KERNEL, secure);
Konrad Rzeszutek Wilk604c4992013-01-16 11:33:52 -0500910fail_response:
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800911 if (err == -EOPNOTSUPP) {
912 pr_debug(DRV_PFX "discard op failed, not supported\n");
913 status = BLKIF_RSP_EOPNOTSUPP;
914 } else if (err)
915 status = BLKIF_RSP_ERROR;
916
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400917 make_response(blkif, req->u.discard.id, req->operation, status);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400918 xen_blkif_put(blkif);
919 return err;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800920}
921
David Vrabel0e367ae2013-03-07 17:32:01 +0000922static int dispatch_other_io(struct xen_blkif *blkif,
923 struct blkif_request *req,
924 struct pending_req *pending_req)
925{
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200926 free_req(blkif, pending_req);
David Vrabel0e367ae2013-03-07 17:32:01 +0000927 make_response(blkif, req->u.other.id, req->operation,
928 BLKIF_RSP_EOPNOTSUPP);
929 return -EIO;
930}
931
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400932static void xen_blk_drain_io(struct xen_blkif *blkif)
933{
934 atomic_set(&blkif->drain, 1);
935 do {
Konrad Rzeszutek Wilk6927d922011-10-17 14:27:48 -0400936 /* The initial value is one, and one refcnt taken at the
937 * start of the xen_blkif_schedule thread. */
938 if (atomic_read(&blkif->refcnt) <= 2)
939 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400940 wait_for_completion_interruptible_timeout(
941 &blkif->drain_complete, HZ);
942
943 if (!atomic_read(&blkif->drain))
944 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400945 } while (!kthread_should_stop());
946 atomic_set(&blkif->drain, 0);
947}
948
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400949/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400950 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400951 */
952
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400953static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400954{
955 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400956 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400957 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400958 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400959 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400960 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400961 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
962 (error == -EOPNOTSUPP)) {
963 pr_debug(DRV_PFX "write barrier op failed, not supported\n");
964 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
965 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400966 } else if (error) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400967 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400968 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400969 pending_req->status = BLKIF_RSP_ERROR;
970 }
971
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400972 /*
973 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400974 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400975 * the proper response on the ring.
976 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400977 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200978 xen_blkbk_unmap(pending_req->blkif,
979 pending_req->segments,
Roger Pau Monne31552ee2013-04-17 20:19:00 +0200980 pending_req->nr_pages);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400981 make_response(pending_req->blkif, pending_req->id,
982 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400983 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400984 if (atomic_read(&pending_req->blkif->refcnt) <= 2) {
985 if (atomic_read(&pending_req->blkif->drain))
986 complete(&pending_req->blkif->drain_complete);
987 }
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200988 free_req(pending_req->blkif, pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400989 }
990}
991
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400992/*
993 * bio callback.
994 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800995static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400996{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400997 __end_block_io_op(bio->bi_private, error);
998 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400999}
1000
1001
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001002
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001003/*
1004 * Function to copy the from the ring buffer the 'struct blkif_request'
1005 * (which has the sectors we want, number of them, grant references, etc),
1006 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001007 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001008static int
1009__do_block_io_op(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001010{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001011 union blkif_back_rings *blk_rings = &blkif->blk_rings;
1012 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001013 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001014 RING_IDX rc, rp;
1015 int more_to_do = 0;
1016
1017 rc = blk_rings->common.req_cons;
1018 rp = blk_rings->common.sring->req_prod;
1019 rmb(); /* Ensure we see queued requests up to 'rp'. */
1020
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -05001021 if (RING_REQUEST_PROD_OVERFLOW(&blk_rings->common, rp)) {
1022 rc = blk_rings->common.rsp_prod_pvt;
1023 pr_warn(DRV_PFX "Frontend provided bogus ring requests (%d - %d = %d). Halting ring processing on dev=%04x\n",
1024 rp, rc, rp - rc, blkif->vbd.pdevice);
1025 return -EACCES;
1026 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001027 while (rc != rp) {
1028
1029 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
1030 break;
1031
Keir Fraser8270b452009-03-06 08:29:15 +00001032 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001033 more_to_do = 1;
1034 break;
1035 }
1036
Roger Pau Monnebf0720c2013-04-17 20:18:59 +02001037 pending_req = alloc_req(blkif);
Keir Fraser8270b452009-03-06 08:29:15 +00001038 if (NULL == pending_req) {
1039 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001040 more_to_do = 1;
1041 break;
1042 }
1043
1044 switch (blkif->blk_protocol) {
1045 case BLKIF_PROTOCOL_NATIVE:
1046 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
1047 break;
1048 case BLKIF_PROTOCOL_X86_32:
1049 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
1050 break;
1051 case BLKIF_PROTOCOL_X86_64:
1052 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
1053 break;
1054 default:
1055 BUG();
1056 }
1057 blk_rings->common.req_cons = ++rc; /* before make_response() */
1058
1059 /* Apply all sanity checks to /private copy/ of request. */
1060 barrier();
David Vrabel0e367ae2013-03-07 17:32:01 +00001061
1062 switch (req.operation) {
1063 case BLKIF_OP_READ:
1064 case BLKIF_OP_WRITE:
1065 case BLKIF_OP_WRITE_BARRIER:
1066 case BLKIF_OP_FLUSH_DISKCACHE:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001067 case BLKIF_OP_INDIRECT:
David Vrabel0e367ae2013-03-07 17:32:01 +00001068 if (dispatch_rw_block_io(blkif, &req, pending_req))
1069 goto done;
1070 break;
1071 case BLKIF_OP_DISCARD:
Roger Pau Monnebf0720c2013-04-17 20:18:59 +02001072 free_req(blkif, pending_req);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001073 if (dispatch_discard_io(blkif, &req))
David Vrabel0e367ae2013-03-07 17:32:01 +00001074 goto done;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001075 break;
David Vrabel0e367ae2013-03-07 17:32:01 +00001076 default:
1077 if (dispatch_other_io(blkif, &req, pending_req))
1078 goto done;
1079 break;
1080 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001081
1082 /* Yield point for this unbounded loop. */
1083 cond_resched();
1084 }
David Vrabel0e367ae2013-03-07 17:32:01 +00001085done:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001086 return more_to_do;
1087}
1088
Daniel Stoddenb4726a92011-05-28 13:21:10 -07001089static int
1090do_block_io_op(struct xen_blkif *blkif)
1091{
1092 union blkif_back_rings *blk_rings = &blkif->blk_rings;
1093 int more_to_do;
1094
1095 do {
1096 more_to_do = __do_block_io_op(blkif);
1097 if (more_to_do)
1098 break;
1099
1100 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
1101 } while (more_to_do);
1102
1103 return more_to_do;
1104}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001105/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001106 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
1107 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001108 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -04001109static int dispatch_rw_block_io(struct xen_blkif *blkif,
1110 struct blkif_request *req,
1111 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001112{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001113 struct phys_req preq;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001114 struct seg_buf *seg = pending_req->seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001115 unsigned int nseg;
1116 struct bio *bio = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001117 struct bio **biolist = pending_req->biolist;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001118 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001119 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001120 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001121 bool drain = false;
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001122 struct grant_page **pages = pending_req->segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001123 unsigned short req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001124
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001125 req_operation = req->operation == BLKIF_OP_INDIRECT ?
1126 req->u.indirect.indirect_op : req->operation;
1127 if ((req->operation == BLKIF_OP_INDIRECT) &&
1128 (req_operation != BLKIF_OP_READ) &&
1129 (req_operation != BLKIF_OP_WRITE)) {
1130 pr_debug(DRV_PFX "Invalid indirect operation (%u)\n",
1131 req_operation);
1132 goto fail_response;
1133 }
1134
1135 switch (req_operation) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001136 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001137 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001138 operation = READ;
1139 break;
1140 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001141 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -04001142 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001143 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001144 case BLKIF_OP_WRITE_BARRIER:
1145 drain = true;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -04001146 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001147 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -04001148 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001149 break;
1150 default:
1151 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001152 goto fail_response;
1153 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001154 }
1155
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001156 /* Check that the number of segments is sane. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001157 nseg = req->operation == BLKIF_OP_INDIRECT ?
1158 req->u.indirect.nr_segments : req->u.rw.nr_segments;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001159
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001160 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001161 unlikely((req->operation != BLKIF_OP_INDIRECT) &&
1162 (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) ||
1163 unlikely((req->operation == BLKIF_OP_INDIRECT) &&
1164 (nseg > MAX_INDIRECT_SEGMENTS))) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -04001165 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001166 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001167 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001168 goto fail_response;
1169 }
1170
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001171 preq.nr_sects = 0;
1172
1173 pending_req->blkif = blkif;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001174 pending_req->id = req->u.rw.id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001175 pending_req->operation = req_operation;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001176 pending_req->status = BLKIF_RSP_OKAY;
1177 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001178
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001179 if (req->operation != BLKIF_OP_INDIRECT) {
1180 preq.dev = req->u.rw.handle;
1181 preq.sector_number = req->u.rw.sector_number;
1182 for (i = 0; i < nseg; i++) {
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001183 pages[i]->gref = req->u.rw.seg[i].gref;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001184 seg[i].nsec = req->u.rw.seg[i].last_sect -
1185 req->u.rw.seg[i].first_sect + 1;
1186 seg[i].offset = (req->u.rw.seg[i].first_sect << 9);
1187 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
1188 (req->u.rw.seg[i].last_sect <
1189 req->u.rw.seg[i].first_sect))
1190 goto fail_response;
1191 preq.nr_sects += seg[i].nsec;
1192 }
1193 } else {
1194 preq.dev = req->u.indirect.handle;
1195 preq.sector_number = req->u.indirect.sector_number;
1196 if (xen_blkbk_parse_indirect(req, pending_req, seg, &preq))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001197 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001198 }
1199
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -04001200 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -04001201 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001202 operation == READ ? "read" : "write",
1203 preq.sector_number,
Chen Ganga72d9002013-02-28 10:34:23 +08001204 preq.sector_number + preq.nr_sects,
1205 blkif->vbd.pdevice);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001206 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001207 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001208
1209 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -04001210 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001211 * is set there.
1212 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001213 for (i = 0; i < nseg; i++) {
1214 if (((int)preq.sector_number|(int)seg[i].nsec) &
1215 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -04001216 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -04001217 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -04001218 goto fail_response;
1219 }
1220 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001221
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -04001222 /* Wait on all outstanding I/O's and once that has been completed
1223 * issue the WRITE_FLUSH.
1224 */
1225 if (drain)
1226 xen_blk_drain_io(pending_req->blkif);
1227
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -04001228 /*
1229 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001230 * set gnttab_set_unmap_op on all of the grant references and perform
1231 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -04001232 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001233 */
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001234 if (xen_blkbk_map_seg(pending_req))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -04001235 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001236
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001237 /*
1238 * This corresponding xen_blkif_put is done in __end_block_io_op, or
1239 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
1240 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001241 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001242
1243 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001244 while ((bio == NULL) ||
1245 (bio_add_page(bio,
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001246 pages[i]->page,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001247 seg[i].nsec << 9,
Roger Pau Monneffb1dab2013-03-18 17:49:32 +01001248 seg[i].offset) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -04001249
Roger Pau Monne1e0f7a22013-06-22 09:59:17 +02001250 int nr_iovecs = min_t(int, (nseg-i), BIO_MAX_PAGES);
1251 bio = bio_alloc(GFP_KERNEL, nr_iovecs);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001252 if (unlikely(bio == NULL))
1253 goto fail_put_bio;
1254
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001255 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001256 bio->bi_bdev = preq.bdev;
1257 bio->bi_private = pending_req;
1258 bio->bi_end_io = end_block_io_op;
1259 bio->bi_sector = preq.sector_number;
1260 }
1261
1262 preq.sector_number += seg[i].nsec;
1263 }
1264
Li Dongyangb3cb0d62011-09-01 18:39:10 +08001265 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001266 if (!bio) {
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001267 BUG_ON(operation != WRITE_FLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -04001268
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001269 bio = bio_alloc(GFP_KERNEL, 0);
1270 if (unlikely(bio == NULL))
1271 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001272
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -04001273 biolist[nbio++] = bio;
1274 bio->bi_bdev = preq.bdev;
1275 bio->bi_private = pending_req;
1276 bio->bi_end_io = end_block_io_op;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001277 }
1278
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001279 atomic_set(&pending_req->pendcnt, nbio);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001280 blk_start_plug(&plug);
1281
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001282 for (i = 0; i < nbio; i++)
1283 submit_bio(operation, biolist[i]);
1284
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001285 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -04001286 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -04001287
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001288 if (operation == READ)
1289 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk5c62cb42011-10-10 12:33:21 -04001290 else if (operation & WRITE)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001291 blkif->st_wr_sect += preq.nr_sects;
1292
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001293 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001294
1295 fail_flush:
Roger Pau Monnebb642e82013-05-02 10:21:17 +02001296 xen_blkbk_unmap(blkif, pending_req->segments,
Roger Pau Monne31552ee2013-04-17 20:19:00 +02001297 pending_req->nr_pages);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001298 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -04001299 /* Haven't submitted any bio's yet. */
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001300 make_response(blkif, req->u.rw.id, req_operation, BLKIF_RSP_ERROR);
Roger Pau Monnebf0720c2013-04-17 20:18:59 +02001301 free_req(blkif, pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001302 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001303 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001304
1305 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -04001306 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -04001307 bio_put(biolist[i]);
Jan Beulich0e5e0982013-03-11 09:39:55 +00001308 atomic_set(&pending_req->pendcnt, 1);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001309 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001310 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -04001311 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001312}
1313
1314
1315
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -04001316/*
1317 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001318 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -04001319static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001320 unsigned short op, int st)
1321{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001322 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001323 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -08001324 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001325 int notify;
1326
1327 resp.id = id;
1328 resp.operation = op;
1329 resp.status = st;
1330
1331 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
1332 /* Place on the response ring for the relevant domain. */
1333 switch (blkif->blk_protocol) {
1334 case BLKIF_PROTOCOL_NATIVE:
1335 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
1336 &resp, sizeof(resp));
1337 break;
1338 case BLKIF_PROTOCOL_X86_32:
1339 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
1340 &resp, sizeof(resp));
1341 break;
1342 case BLKIF_PROTOCOL_X86_64:
1343 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
1344 &resp, sizeof(resp));
1345 break;
1346 default:
1347 BUG();
1348 }
1349 blk_rings->common.rsp_prod_pvt++;
1350 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001351 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001352 if (notify)
1353 notify_remote_via_irq(blkif->irq);
1354}
1355
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001356static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001357{
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001358 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001359
Daniel De Graafb2167ba2011-11-28 11:49:05 -05001360 if (!xen_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001361 return -ENODEV;
1362
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001363 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001364 if (rc)
1365 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001366
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001367 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001368 if (rc)
1369 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001370
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001371 failed_init:
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -04001372 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001373}
1374
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -04001375module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001376
1377MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +02001378MODULE_ALIAS("xen-backend:vbd");