]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/block/xen-blkback/blkback.c
xen/blkback: unmap all persistent grants when frontend gets disconnected
[mirror_ubuntu-hirsute-kernel.git] / drivers / block / xen-blkback / blkback.c
CommitLineData
4d05a28d 1/******************************************************************************
4d05a28d
KRW
2 *
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:
a1397fa3 7 * drivers/block/xen-blkfront.c
4d05a28d
KRW
8 *
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>
88122933 41#include <linux/freezer.h>
0a8704a5 42#include <linux/bitmap.h>
afd91d07 43
88122933
JF
44#include <xen/events.h>
45#include <xen/page.h>
e79affc3 46#include <xen/xen.h>
88122933
JF
47#include <asm/xen/hypervisor.h>
48#include <asm/xen/hypercall.h>
087ffecd 49#include <xen/balloon.h>
4d05a28d
KRW
50#include "common.h"
51
c6cc142d
RPM
52/*
53 * 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
402b27f9 62static int xen_blkif_max_buffer_pages = 1024;
c6cc142d
RPM
63module_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
3f3aad5e
RPM
67/*
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
402b27f9 78static int xen_blkif_max_pgrants = 1056;
3f3aad5e
RPM
79module_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
4d05a28d 97/* Run-time switchable: /sys/module/blkback/parameters/ */
2e9977c2 98static unsigned int log_stats;
4d05a28d 99module_param(log_stats, int, 0644);
4d05a28d 100
4d05a28d
KRW
101#define BLKBACK_INVALID_HANDLE (~0)
102
c6cc142d
RPM
103/* Number of free pages to remove on each call to free_xenballooned_pages */
104#define NUM_BATCH_FREE_PAGES 10
105
c6cc142d
RPM
106static inline int get_free_page(struct xen_blkif *blkif, struct page **page)
107{
108 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);
efe08a3e 121
c6cc142d
RPM
122 return 0;
123}
124
125static inline void put_free_pages(struct xen_blkif *blkif, struct page **page,
126 int num)
4d05a28d 127{
c6cc142d
RPM
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);
4d05a28d
KRW
162}
163
c6cc142d
RPM
164#define vaddr(page) ((unsigned long)pfn_to_kaddr(page_to_pfn(page)))
165
30fd1502
KRW
166static int do_block_io_op(struct xen_blkif *blkif);
167static int dispatch_rw_block_io(struct xen_blkif *blkif,
fc53bf75
KRW
168 struct blkif_request *req,
169 struct pending_req *pending_req);
30fd1502 170static void make_response(struct xen_blkif *blkif, u64 id,
4d05a28d
KRW
171 unsigned short op, int st);
172
7dc34117
RPM
173#define foreach_grant_safe(pos, n, rbtree, node) \
174 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
217fd5e7 175 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL; \
0a8704a5 176 &(pos)->node != NULL; \
7dc34117
RPM
177 (pos) = container_of(n, typeof(*(pos)), node), \
178 (n) = (&(pos)->node != NULL) ? rb_next(&(pos)->node) : NULL)
0a8704a5
RPM
179
180
3f3aad5e
RPM
181/*
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,
0a8704a5
RPM
192 struct persistent_gnt *persistent_gnt)
193{
3f3aad5e 194 struct rb_node **new = NULL, *parent = NULL;
0a8704a5
RPM
195 struct persistent_gnt *this;
196
3f3aad5e
RPM
197 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 }
0a8704a5 202 /* Figure out where to put new node */
3f3aad5e 203 new = &blkif->persistent_gnts.rb_node;
0a8704a5
RPM
204 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 {
c6cc142d
RPM
213 pr_alert_ratelimited(DRV_PFX " trying to add a gref that's already in the tree\n");
214 return -EINVAL;
0a8704a5
RPM
215 }
216 }
217
3f3aad5e
RPM
218 bitmap_zero(persistent_gnt->flags, PERSISTENT_GNT_FLAGS_SIZE);
219 set_bit(PERSISTENT_GNT_ACTIVE, persistent_gnt->flags);
0a8704a5
RPM
220 /* Add new node and rebalance tree. */
221 rb_link_node(&(persistent_gnt->node), parent, new);
3f3aad5e
RPM
222 rb_insert_color(&(persistent_gnt->node), &blkif->persistent_gnts);
223 blkif->persistent_gnt_c++;
224 atomic_inc(&blkif->persistent_gnt_in_use);
c6cc142d 225 return 0;
0a8704a5
RPM
226}
227
3f3aad5e 228static struct persistent_gnt *get_persistent_gnt(struct xen_blkif *blkif,
0a8704a5
RPM
229 grant_ref_t gref)
230{
231 struct persistent_gnt *data;
3f3aad5e 232 struct rb_node *node = NULL;
0a8704a5 233
3f3aad5e 234 node = blkif->persistent_gnts.rb_node;
0a8704a5
RPM
235 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;
3f3aad5e
RPM
242 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);
0a8704a5 249 return data;
3f3aad5e 250 }
0a8704a5
RPM
251 }
252 return NULL;
253}
254
3f3aad5e
RPM
255static 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
c6cc142d
RPM
265static void free_persistent_gnts(struct xen_blkif *blkif, struct rb_root *root,
266 unsigned int num)
4d4f270f
RPM
267{
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;
7dc34117 271 struct rb_node *n;
4d4f270f
RPM
272 int ret = 0;
273 int segs_to_unmap = 0;
274
7dc34117 275 foreach_grant_safe(persistent_gnt, n, root, node) {
4d4f270f
RPM
276 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;
4d4f270f
RPM
285
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);
c6cc142d 291 put_free_pages(blkif, pages, segs_to_unmap);
4d4f270f
RPM
292 segs_to_unmap = 0;
293 }
7dc34117
RPM
294
295 rb_erase(&persistent_gnt->node, root);
296 kfree(persistent_gnt);
297 num--;
4d4f270f
RPM
298 }
299 BUG_ON(num != 0);
300}
301
abb97b8c 302void xen_blkbk_unmap_purged_grants(struct work_struct *work)
3f3aad5e
RPM
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;
2d910543 344 bool scan_used = false, clean_used = false;
3f3aad5e
RPM
345 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);
2d910543
RPM
361 if ((num_clean == 0) ||
362 (num_clean > (blkif->persistent_gnt_c - atomic_read(&blkif->persistent_gnt_in_use))))
3f3aad5e
RPM
363 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
ef753411 378 BUG_ON(!list_empty(&blkif->persistent_purge_list));
3f3aad5e
RPM
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
2d910543
RPM
385 if (clean_used) {
386 clear_bit(PERSISTENT_GNT_WAS_ACTIVE, persistent_gnt->flags);
387 continue;
388 }
389
3f3aad5e
RPM
390 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 */
2d910543 407 if (!scan_used && !clean_used) {
3f3aad5e
RPM
408 pr_debug(DRV_PFX "Still missing %u purged frames\n", num_clean);
409 scan_used = true;
410 goto purge_list;
411 }
412finished:
2d910543
RPM
413 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;
3f3aad5e 417 }
2d910543 418
3f3aad5e
RPM
419 blkif->persistent_gnt_c -= (total - num_clean);
420 blkif->vbd.overflow_max_grants = 0;
421
422 /* We can defer this work */
3f3aad5e
RPM
423 schedule_work(&blkif->persistent_purge_work);
424 pr_debug(DRV_PFX "Purged %u/%u\n", (total - num_clean), total);
425 return;
426}
427
a1397fa3
KRW
428/*
429 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
4d05a28d 430 */
bf0720c4 431static struct pending_req *alloc_req(struct xen_blkif *blkif)
4d05a28d 432{
2e9977c2 433 struct pending_req *req = NULL;
4d05a28d
KRW
434 unsigned long flags;
435
bf0720c4
RPM
436 spin_lock_irqsave(&blkif->pending_free_lock, flags);
437 if (!list_empty(&blkif->pending_free)) {
438 req = list_entry(blkif->pending_free.next, struct pending_req,
2e9977c2 439 free_list);
4d05a28d
KRW
440 list_del(&req->free_list);
441 }
bf0720c4 442 spin_unlock_irqrestore(&blkif->pending_free_lock, flags);
4d05a28d
KRW
443 return req;
444}
445
a1397fa3
KRW
446/*
447 * Return the 'pending_req' structure back to the freepool. We also
448 * wake up the thread if it was waiting for a free page.
449 */
bf0720c4 450static void free_req(struct xen_blkif *blkif, struct pending_req *req)
4d05a28d
KRW
451{
452 unsigned long flags;
453 int was_empty;
454
bf0720c4
RPM
455 spin_lock_irqsave(&blkif->pending_free_lock, flags);
456 was_empty = list_empty(&blkif->pending_free);
457 list_add(&req->free_list, &blkif->pending_free);
458 spin_unlock_irqrestore(&blkif->pending_free_lock, flags);
4d05a28d 459 if (was_empty)
bf0720c4 460 wake_up(&blkif->pending_free_wq);
4d05a28d
KRW
461}
462
ee9ff853
KRW
463/*
464 * Routines for managing virtual block devices (vbds).
465 */
3d814731
KRW
466static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
467 int operation)
ee9ff853 468{
3d814731 469 struct xen_vbd *vbd = &blkif->vbd;
ee9ff853
KRW
470 int rc = -EACCES;
471
472 if ((operation != READ) && vbd->readonly)
473 goto out;
474
8ab52150
JB
475 if (likely(req->nr_sects)) {
476 blkif_sector_t end = req->sector_number + req->nr_sects;
477
478 if (unlikely(end < req->sector_number))
479 goto out;
480 if (unlikely(end > vbd_sz(vbd)))
481 goto out;
482 }
ee9ff853
KRW
483
484 req->dev = vbd->pdevice;
485 req->bdev = vbd->bdev;
486 rc = 0;
487
488 out:
489 return rc;
490}
491
3d814731 492static void xen_vbd_resize(struct xen_blkif *blkif)
ee9ff853 493{
3d814731 494 struct xen_vbd *vbd = &blkif->vbd;
ee9ff853
KRW
495 struct xenbus_transaction xbt;
496 int err;
8b6bf747 497 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
42c7841d 498 unsigned long long new_size = vbd_sz(vbd);
ee9ff853 499
22b20f2d 500 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
ee9ff853 501 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
22b20f2d 502 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
ee9ff853
KRW
503 vbd->size = new_size;
504again:
505 err = xenbus_transaction_start(&xbt);
506 if (err) {
22b20f2d 507 pr_warn(DRV_PFX "Error starting transaction");
ee9ff853
KRW
508 return;
509 }
510 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
42c7841d 511 (unsigned long long)vbd_sz(vbd));
ee9ff853 512 if (err) {
22b20f2d 513 pr_warn(DRV_PFX "Error writing new size");
ee9ff853
KRW
514 goto abort;
515 }
516 /*
517 * Write the current state; we will use this to synchronize
518 * the front-end. If the current state is "connected" the
519 * front-end will get the new size information online.
520 */
521 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
522 if (err) {
22b20f2d 523 pr_warn(DRV_PFX "Error writing the state");
ee9ff853
KRW
524 goto abort;
525 }
526
527 err = xenbus_transaction_end(xbt, 0);
528 if (err == -EAGAIN)
529 goto again;
530 if (err)
22b20f2d 531 pr_warn(DRV_PFX "Error ending transaction");
496b318e 532 return;
ee9ff853
KRW
533abort:
534 xenbus_transaction_end(xbt, 1);
535}
536
a1397fa3 537/*
b0aef179
KRW
538 * Notification from the guest OS.
539 */
30fd1502 540static void blkif_notify_work(struct xen_blkif *blkif)
4d05a28d 541{
b0aef179
KRW
542 blkif->waiting_reqs = 1;
543 wake_up(&blkif->wq);
544}
4d05a28d 545
8b6bf747 546irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
b0aef179
KRW
547{
548 blkif_notify_work(dev_id);
549 return IRQ_HANDLED;
4d05a28d
KRW
550}
551
2e9977c2 552/*
4d05a28d
KRW
553 * SCHEDULER FUNCTIONS
554 */
555
30fd1502 556static void print_stats(struct xen_blkif *blkif)
4d05a28d 557{
986cacbd 558 pr_info("xen-blkback (%s): oo %3llu | rd %4llu | wr %4llu | f %4llu"
3f3aad5e 559 " | ds %4llu | pg: %4u/%4d\n",
ebe81906 560 current->comm, blkif->st_oo_req,
b3cb0d6a 561 blkif->st_rd_req, blkif->st_wr_req,
c1a15d08
RPM
562 blkif->st_f_req, blkif->st_ds_req,
563 blkif->persistent_gnt_c,
3f3aad5e 564 xen_blkif_max_pgrants);
4d05a28d
KRW
565 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
566 blkif->st_rd_req = 0;
567 blkif->st_wr_req = 0;
568 blkif->st_oo_req = 0;
b3cb0d6a 569 blkif->st_ds_req = 0;
4d05a28d
KRW
570}
571
8b6bf747 572int xen_blkif_schedule(void *arg)
4d05a28d 573{
30fd1502 574 struct xen_blkif *blkif = arg;
3d814731 575 struct xen_vbd *vbd = &blkif->vbd;
3f3aad5e 576 unsigned long timeout;
8e3f8755 577 int ret;
4d05a28d 578
8b6bf747 579 xen_blkif_get(blkif);
4d05a28d 580
4d05a28d
KRW
581 while (!kthread_should_stop()) {
582 if (try_to_freeze())
583 continue;
42c7841d 584 if (unlikely(vbd->size != vbd_sz(vbd)))
3d814731 585 xen_vbd_resize(blkif);
4d05a28d 586
3f3aad5e
RPM
587 timeout = msecs_to_jiffies(LRU_INTERVAL);
588
589 timeout = wait_event_interruptible_timeout(
4d05a28d 590 blkif->wq,
3f3aad5e
RPM
591 blkif->waiting_reqs || kthread_should_stop(),
592 timeout);
593 if (timeout == 0)
594 goto purge_gnt_list;
595 timeout = wait_event_interruptible_timeout(
bf0720c4
RPM
596 blkif->pending_free_wq,
597 !list_empty(&blkif->pending_free) ||
3f3aad5e
RPM
598 kthread_should_stop(),
599 timeout);
600 if (timeout == 0)
601 goto purge_gnt_list;
4d05a28d
KRW
602
603 blkif->waiting_reqs = 0;
604 smp_mb(); /* clear flag *before* checking for work */
605
8e3f8755
KRW
606 ret = do_block_io_op(blkif);
607 if (ret > 0)
4d05a28d 608 blkif->waiting_reqs = 1;
8e3f8755
KRW
609 if (ret == -EACCES)
610 wait_event_interruptible(blkif->shutdown_wq,
611 kthread_should_stop());
4d05a28d 612
3f3aad5e
RPM
613purge_gnt_list:
614 if (blkif->vbd.feature_gnt_persistent &&
615 time_after(jiffies, blkif->next_lru)) {
616 purge_persistent_gnt(blkif);
617 blkif->next_lru = jiffies + msecs_to_jiffies(LRU_INTERVAL);
618 }
619
c6cc142d
RPM
620 /* Shrink if we have more than xen_blkif_max_buffer_pages */
621 shrink_free_pagepool(blkif, xen_blkif_max_buffer_pages);
622
4d05a28d
KRW
623 if (log_stats && time_after(jiffies, blkif->st_print))
624 print_stats(blkif);
625 }
626
ef753411
RPM
627 /* Drain pending purge work */
628 flush_work(&blkif->persistent_purge_work);
c6cc142d 629
ef753411
RPM
630 if (log_stats)
631 print_stats(blkif);
632
633 blkif->xenblkd = NULL;
634 xen_blkif_put(blkif);
635
636 return 0;
637}
638
639/*
640 * Remove persistent grants and empty the pool of free pages
641 */
642void xen_blkbk_free_caches(struct xen_blkif *blkif)
643{
0a8704a5 644 /* Free all persistent grant pages */
4d4f270f 645 if (!RB_EMPTY_ROOT(&blkif->persistent_gnts))
c6cc142d 646 free_persistent_gnts(blkif, &blkif->persistent_gnts,
4d4f270f 647 blkif->persistent_gnt_c);
0a8704a5 648
0a8704a5 649 BUG_ON(!RB_EMPTY_ROOT(&blkif->persistent_gnts));
4d4f270f 650 blkif->persistent_gnt_c = 0;
0a8704a5 651
2ed22e3c
MR
652 /* Since we are shutting down remove all pages from the buffer */
653 shrink_free_pagepool(blkif, 0 /* All */);
4d05a28d
KRW
654}
655
b0aef179
KRW
656/*
657 * Unmap the grant references, and also remove the M2P over-rides
658 * used in the 'pending_req'.
01f37f2d 659 */
31552ee3 660static void xen_blkbk_unmap(struct xen_blkif *blkif,
bb642e83 661 struct grant_page *pages[],
31552ee3 662 int num)
b0aef179
KRW
663{
664 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
31552ee3 665 struct page *unmap_pages[BLKIF_MAX_SEGMENTS_PER_REQUEST];
b0aef179 666 unsigned int i, invcount = 0;
b0aef179
KRW
667 int ret;
668
31552ee3 669 for (i = 0; i < num; i++) {
bb642e83
RPM
670 if (pages[i]->persistent_gnt != NULL) {
671 put_persistent_gnt(blkif, pages[i]->persistent_gnt);
0a8704a5 672 continue;
3f3aad5e 673 }
bb642e83 674 if (pages[i]->handle == BLKBACK_INVALID_HANDLE)
b0aef179 675 continue;
bb642e83
RPM
676 unmap_pages[invcount] = pages[i]->page;
677 gnttab_set_unmap_op(&unmap[invcount], vaddr(pages[i]->page),
678 GNTMAP_host_map, pages[i]->handle);
679 pages[i]->handle = BLKBACK_INVALID_HANDLE;
31552ee3
RPM
680 if (++invcount == BLKIF_MAX_SEGMENTS_PER_REQUEST) {
681 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages,
682 invcount);
683 BUG_ON(ret);
684 put_free_pages(blkif, unmap_pages, invcount);
685 invcount = 0;
686 }
687 }
688 if (invcount) {
689 ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
690 BUG_ON(ret);
691 put_free_pages(blkif, unmap_pages, invcount);
b0aef179 692 }
b0aef179 693}
01f37f2d 694
bb642e83
RPM
695static int xen_blkbk_map(struct xen_blkif *blkif,
696 struct grant_page *pages[],
31552ee3 697 int num, bool ro)
1a95fe6e
KRW
698{
699 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
0a8704a5
RPM
700 struct page *pages_to_gnt[BLKIF_MAX_SEGMENTS_PER_REQUEST];
701 struct persistent_gnt *persistent_gnt = NULL;
0a8704a5 702 phys_addr_t addr = 0;
c6cc142d 703 int i, seg_idx, new_map_idx;
0a8704a5 704 int segs_to_map = 0;
1a95fe6e 705 int ret = 0;
31552ee3 706 int last_map = 0, map_until = 0;
0a8704a5
RPM
707 int use_persistent_gnts;
708
709 use_persistent_gnts = (blkif->vbd.feature_gnt_persistent);
710
01f37f2d
KRW
711 /*
712 * Fill out preq.nr_sects with proper amount of sectors, and setup
1a95fe6e
KRW
713 * assign map[..] with the PFN of the page in our domain with the
714 * corresponding grant reference for each page.
715 */
31552ee3
RPM
716again:
717 for (i = map_until; i < num; i++) {
1a95fe6e
KRW
718 uint32_t flags;
719
0a8704a5
RPM
720 if (use_persistent_gnts)
721 persistent_gnt = get_persistent_gnt(
3f3aad5e 722 blkif,
bb642e83 723 pages[i]->gref);
0a8704a5
RPM
724
725 if (persistent_gnt) {
726 /*
727 * We are using persistent grants and
728 * the grant is already mapped
729 */
bb642e83
RPM
730 pages[i]->page = persistent_gnt->page;
731 pages[i]->persistent_gnt = persistent_gnt;
0a8704a5 732 } else {
bb642e83 733 if (get_free_page(blkif, &pages[i]->page))
c6cc142d 734 goto out_of_memory;
bb642e83
RPM
735 addr = vaddr(pages[i]->page);
736 pages_to_gnt[segs_to_map] = pages[i]->page;
737 pages[i]->persistent_gnt = NULL;
0a8704a5 738 flags = GNTMAP_host_map;
31552ee3 739 if (!use_persistent_gnts && ro)
0a8704a5
RPM
740 flags |= GNTMAP_readonly;
741 gnttab_set_map_op(&map[segs_to_map++], addr,
bb642e83 742 flags, pages[i]->gref,
0a8704a5
RPM
743 blkif->domid);
744 }
31552ee3
RPM
745 map_until = i + 1;
746 if (segs_to_map == BLKIF_MAX_SEGMENTS_PER_REQUEST)
747 break;
1a95fe6e
KRW
748 }
749
0a8704a5
RPM
750 if (segs_to_map) {
751 ret = gnttab_map_refs(map, NULL, pages_to_gnt, segs_to_map);
752 BUG_ON(ret);
753 }
1a95fe6e 754
01f37f2d
KRW
755 /*
756 * Now swizzle the MFN in our domain with the MFN from the other domain
1a95fe6e
KRW
757 * so that when we access vaddr(pending_req,i) it has the contents of
758 * the page from the other domain.
759 */
31552ee3 760 for (seg_idx = last_map, new_map_idx = 0; seg_idx < map_until; seg_idx++) {
bb642e83 761 if (!pages[seg_idx]->persistent_gnt) {
0a8704a5 762 /* This is a newly mapped grant */
c6cc142d
RPM
763 BUG_ON(new_map_idx >= segs_to_map);
764 if (unlikely(map[new_map_idx].status != 0)) {
0a8704a5 765 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
bb642e83 766 pages[seg_idx]->handle = BLKBACK_INVALID_HANDLE;
0a8704a5 767 ret |= 1;
31552ee3 768 goto next;
0a8704a5 769 }
bb642e83 770 pages[seg_idx]->handle = map[new_map_idx].handle;
c6cc142d 771 } else {
31552ee3 772 continue;
0a8704a5 773 }
c6cc142d 774 if (use_persistent_gnts &&
3f3aad5e 775 blkif->persistent_gnt_c < xen_blkif_max_pgrants) {
c6cc142d
RPM
776 /*
777 * We are using persistent grants, the grant is
3f3aad5e 778 * not mapped but we might have room for it.
c6cc142d
RPM
779 */
780 persistent_gnt = kmalloc(sizeof(struct persistent_gnt),
781 GFP_KERNEL);
782 if (!persistent_gnt) {
0a8704a5 783 /*
c6cc142d
RPM
784 * If we don't have enough memory to
785 * allocate the persistent_gnt struct
786 * map this grant non-persistenly
0a8704a5 787 */
31552ee3 788 goto next;
0a8704a5 789 }
c6cc142d
RPM
790 persistent_gnt->gnt = map[new_map_idx].ref;
791 persistent_gnt->handle = map[new_map_idx].handle;
bb642e83 792 persistent_gnt->page = pages[seg_idx]->page;
3f3aad5e 793 if (add_persistent_gnt(blkif,
c6cc142d
RPM
794 persistent_gnt)) {
795 kfree(persistent_gnt);
796 persistent_gnt = NULL;
31552ee3 797 goto next;
c6cc142d 798 }
bb642e83 799 pages[seg_idx]->persistent_gnt = persistent_gnt;
c6cc142d
RPM
800 pr_debug(DRV_PFX " grant %u added to the tree of persistent grants, using %u/%u\n",
801 persistent_gnt->gnt, blkif->persistent_gnt_c,
3f3aad5e 802 xen_blkif_max_pgrants);
c6cc142d
RPM
803 goto next;
804 }
805 if (use_persistent_gnts && !blkif->vbd.overflow_max_grants) {
806 blkif->vbd.overflow_max_grants = 1;
807 pr_debug(DRV_PFX " domain %u, device %#x is using maximum number of persistent grants\n",
808 blkif->domid, blkif->vbd.handle);
1a95fe6e 809 }
c6cc142d
RPM
810 /*
811 * We could not map this grant persistently, so use it as
812 * a non-persistent grant.
813 */
c6cc142d 814next:
31552ee3 815 new_map_idx++;
1a95fe6e 816 }
31552ee3
RPM
817 segs_to_map = 0;
818 last_map = map_until;
819 if (map_until != num)
820 goto again;
821
1a95fe6e 822 return ret;
c6cc142d
RPM
823
824out_of_memory:
825 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
826 put_free_pages(blkif, pages_to_gnt, segs_to_map);
827 return -ENOMEM;
1a95fe6e
KRW
828}
829
bb642e83 830static int xen_blkbk_map_seg(struct pending_req *pending_req)
31552ee3 831{
402b27f9 832 int rc;
31552ee3 833
bb642e83 834 rc = xen_blkbk_map(pending_req->blkif, pending_req->segments,
402b27f9 835 pending_req->nr_pages,
31552ee3 836 (pending_req->operation != BLKIF_OP_READ));
31552ee3 837
402b27f9
RPM
838 return rc;
839}
31552ee3 840
402b27f9
RPM
841static int xen_blkbk_parse_indirect(struct blkif_request *req,
842 struct pending_req *pending_req,
843 struct seg_buf seg[],
844 struct phys_req *preq)
845{
bb642e83 846 struct grant_page **pages = pending_req->indirect_pages;
402b27f9
RPM
847 struct xen_blkif *blkif = pending_req->blkif;
848 int indirect_grefs, rc, n, nseg, i;
80bfa2f6 849 struct blkif_request_segment *segments = NULL;
402b27f9
RPM
850
851 nseg = pending_req->nr_pages;
852 indirect_grefs = INDIRECT_PAGES(nseg);
853 BUG_ON(indirect_grefs > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
854
bb642e83
RPM
855 for (i = 0; i < indirect_grefs; i++)
856 pages[i]->gref = req->u.indirect.indirect_grefs[i];
857
858 rc = xen_blkbk_map(blkif, pages, indirect_grefs, true);
402b27f9
RPM
859 if (rc)
860 goto unmap;
861
862 for (n = 0, i = 0; n < nseg; n++) {
863 if ((n % SEGS_PER_INDIRECT_FRAME) == 0) {
864 /* Map indirect segments */
865 if (segments)
866 kunmap_atomic(segments);
bb642e83 867 segments = kmap_atomic(pages[n/SEGS_PER_INDIRECT_FRAME]->page);
402b27f9
RPM
868 }
869 i = n % SEGS_PER_INDIRECT_FRAME;
bb642e83 870 pending_req->segments[n]->gref = segments[i].gref;
402b27f9
RPM
871 seg[n].nsec = segments[i].last_sect -
872 segments[i].first_sect + 1;
873 seg[n].offset = (segments[i].first_sect << 9);
874 if ((segments[i].last_sect >= (PAGE_SIZE >> 9)) ||
875 (segments[i].last_sect < segments[i].first_sect)) {
876 rc = -EINVAL;
877 goto unmap;
878 }
879 preq->nr_sects += seg[n].nsec;
880 }
881
882unmap:
883 if (segments)
884 kunmap_atomic(segments);
bb642e83 885 xen_blkbk_unmap(blkif, pages, indirect_grefs);
402b27f9 886 return rc;
31552ee3
RPM
887}
888
42146352
KRW
889static int dispatch_discard_io(struct xen_blkif *blkif,
890 struct blkif_request *req)
b3cb0d6a
LD
891{
892 int err = 0;
893 int status = BLKIF_RSP_OKAY;
894 struct block_device *bdev = blkif->vbd.bdev;
4dae7670 895 unsigned long secure;
604c499c 896 struct phys_req preq;
b3cb0d6a 897
ea5ec76d
VN
898 xen_blkif_get(blkif);
899
604c499c
KRW
900 preq.sector_number = req->u.discard.sector_number;
901 preq.nr_sects = req->u.discard.nr_sectors;
902
903 err = xen_vbd_translate(&preq, blkif, WRITE);
904 if (err) {
905 pr_warn(DRV_PFX "access denied: DISCARD [%llu->%llu] on dev=%04x\n",
906 preq.sector_number,
907 preq.sector_number + preq.nr_sects, blkif->vbd.pdevice);
908 goto fail_response;
909 }
42146352
KRW
910 blkif->st_ds_req++;
911
4dae7670
KRW
912 secure = (blkif->vbd.discard_secure &&
913 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
914 BLKDEV_DISCARD_SECURE : 0;
915
916 err = blkdev_issue_discard(bdev, req->u.discard.sector_number,
917 req->u.discard.nr_sectors,
918 GFP_KERNEL, secure);
604c499c 919fail_response:
b3cb0d6a
LD
920 if (err == -EOPNOTSUPP) {
921 pr_debug(DRV_PFX "discard op failed, not supported\n");
922 status = BLKIF_RSP_EOPNOTSUPP;
923 } else if (err)
924 status = BLKIF_RSP_ERROR;
925
97e36834 926 make_response(blkif, req->u.discard.id, req->operation, status);
42146352
KRW
927 xen_blkif_put(blkif);
928 return err;
b3cb0d6a
LD
929}
930
0e367ae4
DV
931static int dispatch_other_io(struct xen_blkif *blkif,
932 struct blkif_request *req,
933 struct pending_req *pending_req)
934{
bf0720c4 935 free_req(blkif, pending_req);
0e367ae4
DV
936 make_response(blkif, req->u.other.id, req->operation,
937 BLKIF_RSP_EOPNOTSUPP);
938 return -EIO;
939}
940
29bde093
KRW
941static void xen_blk_drain_io(struct xen_blkif *blkif)
942{
943 atomic_set(&blkif->drain, 1);
944 do {
c05f3e3c 945 if (atomic_read(&blkif->inflight) == 0)
6927d920 946 break;
29bde093
KRW
947 wait_for_completion_interruptible_timeout(
948 &blkif->drain_complete, HZ);
949
950 if (!atomic_read(&blkif->drain))
951 break;
29bde093
KRW
952 } while (!kthread_should_stop());
953 atomic_set(&blkif->drain, 0);
954}
955
a1397fa3
KRW
956/*
957 * Completion callback on the bio's. Called as bh->b_end_io()
4d05a28d
KRW
958 */
959
2e9977c2 960static void __end_block_io_op(struct pending_req *pending_req, int error)
4d05a28d
KRW
961{
962 /* An error fails the entire request. */
24f567f9 963 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
4d05a28d 964 (error == -EOPNOTSUPP)) {
22b20f2d 965 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
24f567f9 966 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
4d05a28d 967 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
29bde093
KRW
968 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
969 (error == -EOPNOTSUPP)) {
970 pr_debug(DRV_PFX "write barrier op failed, not supported\n");
971 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
972 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
4d05a28d 973 } else if (error) {
22b20f2d 974 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
ebe81906 975 " error=%d\n", error);
4d05a28d
KRW
976 pending_req->status = BLKIF_RSP_ERROR;
977 }
978
01f37f2d
KRW
979 /*
980 * If all of the bio's have completed it is time to unmap
a1397fa3 981 * the grant references associated with 'request' and provide
2e9977c2
KRW
982 * the proper response on the ring.
983 */
4d05a28d 984 if (atomic_dec_and_test(&pending_req->pendcnt)) {
c05f3e3c
RPM
985 struct xen_blkif *blkif = pending_req->blkif;
986
987 xen_blkbk_unmap(blkif,
bb642e83 988 pending_req->segments,
31552ee3 989 pending_req->nr_pages);
c05f3e3c 990 make_response(blkif, pending_req->id,
4d05a28d 991 pending_req->operation, pending_req->status);
c05f3e3c
RPM
992 free_req(blkif, pending_req);
993 /*
994 * Make sure the request is freed before releasing blkif,
995 * or there could be a race between free_req and the
996 * cleanup done in xen_blkif_free during shutdown.
997 *
998 * NB: The fact that we might try to wake up pending_free_wq
999 * before drain_complete (in case there's a drain going on)
1000 * it's not a problem with our current implementation
1001 * because we can assure there's no thread waiting on
1002 * pending_free_wq if there's a drain going on, but it has
1003 * to be taken into account if the current model is changed.
1004 */
1005 if (atomic_dec_and_test(&blkif->inflight) && atomic_read(&blkif->drain)) {
1006 complete(&blkif->drain_complete);
29bde093 1007 }
c05f3e3c 1008 xen_blkif_put(blkif);
4d05a28d
KRW
1009 }
1010}
1011
a1397fa3
KRW
1012/*
1013 * bio callback.
1014 */
88122933 1015static void end_block_io_op(struct bio *bio, int error)
4d05a28d 1016{
4d05a28d
KRW
1017 __end_block_io_op(bio->bi_private, error);
1018 bio_put(bio);
4d05a28d
KRW
1019}
1020
1021
4d05a28d 1022
a1397fa3
KRW
1023/*
1024 * Function to copy the from the ring buffer the 'struct blkif_request'
1025 * (which has the sectors we want, number of them, grant references, etc),
1026 * and transmute it to the block API to hand it over to the proper block disk.
4d05a28d 1027 */
b4726a9d
DS
1028static int
1029__do_block_io_op(struct xen_blkif *blkif)
4d05a28d 1030{
88122933
JF
1031 union blkif_back_rings *blk_rings = &blkif->blk_rings;
1032 struct blkif_request req;
2e9977c2 1033 struct pending_req *pending_req;
4d05a28d
KRW
1034 RING_IDX rc, rp;
1035 int more_to_do = 0;
1036
1037 rc = blk_rings->common.req_cons;
1038 rp = blk_rings->common.sring->req_prod;
1039 rmb(); /* Ensure we see queued requests up to 'rp'. */
1040
8e3f8755
KRW
1041 if (RING_REQUEST_PROD_OVERFLOW(&blk_rings->common, rp)) {
1042 rc = blk_rings->common.rsp_prod_pvt;
1043 pr_warn(DRV_PFX "Frontend provided bogus ring requests (%d - %d = %d). Halting ring processing on dev=%04x\n",
1044 rp, rc, rp - rc, blkif->vbd.pdevice);
1045 return -EACCES;
1046 }
4d05a28d
KRW
1047 while (rc != rp) {
1048
1049 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
1050 break;
1051
8270b45b 1052 if (kthread_should_stop()) {
4d05a28d
KRW
1053 more_to_do = 1;
1054 break;
1055 }
1056
bf0720c4 1057 pending_req = alloc_req(blkif);
8270b45b
KF
1058 if (NULL == pending_req) {
1059 blkif->st_oo_req++;
4d05a28d
KRW
1060 more_to_do = 1;
1061 break;
1062 }
1063
1064 switch (blkif->blk_protocol) {
1065 case BLKIF_PROTOCOL_NATIVE:
1066 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
1067 break;
1068 case BLKIF_PROTOCOL_X86_32:
1069 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
1070 break;
1071 case BLKIF_PROTOCOL_X86_64:
1072 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
1073 break;
1074 default:
1075 BUG();
1076 }
1077 blk_rings->common.req_cons = ++rc; /* before make_response() */
1078
1079 /* Apply all sanity checks to /private copy/ of request. */
1080 barrier();
0e367ae4
DV
1081
1082 switch (req.operation) {
1083 case BLKIF_OP_READ:
1084 case BLKIF_OP_WRITE:
1085 case BLKIF_OP_WRITE_BARRIER:
1086 case BLKIF_OP_FLUSH_DISKCACHE:
402b27f9 1087 case BLKIF_OP_INDIRECT:
0e367ae4
DV
1088 if (dispatch_rw_block_io(blkif, &req, pending_req))
1089 goto done;
1090 break;
1091 case BLKIF_OP_DISCARD:
bf0720c4 1092 free_req(blkif, pending_req);
42146352 1093 if (dispatch_discard_io(blkif, &req))
0e367ae4 1094 goto done;
4d05a28d 1095 break;
0e367ae4
DV
1096 default:
1097 if (dispatch_other_io(blkif, &req, pending_req))
1098 goto done;
1099 break;
1100 }
4d05a28d
KRW
1101
1102 /* Yield point for this unbounded loop. */
1103 cond_resched();
1104 }
0e367ae4 1105done:
4d05a28d
KRW
1106 return more_to_do;
1107}
1108
b4726a9d
DS
1109static int
1110do_block_io_op(struct xen_blkif *blkif)
1111{
1112 union blkif_back_rings *blk_rings = &blkif->blk_rings;
1113 int more_to_do;
1114
1115 do {
1116 more_to_do = __do_block_io_op(blkif);
1117 if (more_to_do)
1118 break;
1119
1120 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
1121 } while (more_to_do);
1122
1123 return more_to_do;
1124}
a1397fa3 1125/*
01f37f2d
KRW
1126 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
1127 * and call the 'submit_bio' to pass it to the underlying storage.
a1397fa3 1128 */
30fd1502
KRW
1129static int dispatch_rw_block_io(struct xen_blkif *blkif,
1130 struct blkif_request *req,
1131 struct pending_req *pending_req)
4d05a28d 1132{
4d05a28d 1133 struct phys_req preq;
402b27f9 1134 struct seg_buf *seg = pending_req->seg;
4d05a28d
KRW
1135 unsigned int nseg;
1136 struct bio *bio = NULL;
402b27f9 1137 struct bio **biolist = pending_req->biolist;
1a95fe6e 1138 int i, nbio = 0;
4d05a28d 1139 int operation;
a19be5f0 1140 struct blk_plug plug;
29bde093 1141 bool drain = false;
bb642e83 1142 struct grant_page **pages = pending_req->segments;
402b27f9
RPM
1143 unsigned short req_operation;
1144
1145 req_operation = req->operation == BLKIF_OP_INDIRECT ?
1146 req->u.indirect.indirect_op : req->operation;
1147 if ((req->operation == BLKIF_OP_INDIRECT) &&
1148 (req_operation != BLKIF_OP_READ) &&
1149 (req_operation != BLKIF_OP_WRITE)) {
1150 pr_debug(DRV_PFX "Invalid indirect operation (%u)\n",
1151 req_operation);
1152 goto fail_response;
1153 }
4d05a28d 1154
402b27f9 1155 switch (req_operation) {
4d05a28d 1156 case BLKIF_OP_READ:
fc53bf75 1157 blkif->st_rd_req++;
4d05a28d
KRW
1158 operation = READ;
1159 break;
1160 case BLKIF_OP_WRITE:
fc53bf75 1161 blkif->st_wr_req++;
013c3ca1 1162 operation = WRITE_ODIRECT;
4d05a28d 1163 break;
29bde093
KRW
1164 case BLKIF_OP_WRITE_BARRIER:
1165 drain = true;
24f567f9 1166 case BLKIF_OP_FLUSH_DISKCACHE:
fc53bf75 1167 blkif->st_f_req++;
24f567f9 1168 operation = WRITE_FLUSH;
4d05a28d
KRW
1169 break;
1170 default:
1171 operation = 0; /* make gcc happy */
fc53bf75
KRW
1172 goto fail_response;
1173 break;
4d05a28d
KRW
1174 }
1175
42146352 1176 /* Check that the number of segments is sane. */
402b27f9
RPM
1177 nseg = req->operation == BLKIF_OP_INDIRECT ?
1178 req->u.indirect.nr_segments : req->u.rw.nr_segments;
97e36834 1179
42146352 1180 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
402b27f9
RPM
1181 unlikely((req->operation != BLKIF_OP_INDIRECT) &&
1182 (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) ||
1183 unlikely((req->operation == BLKIF_OP_INDIRECT) &&
1184 (nseg > MAX_INDIRECT_SEGMENTS))) {
22b20f2d 1185 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
ebe81906 1186 nseg);
1a95fe6e 1187 /* Haven't submitted any bio's yet. */
4d05a28d
KRW
1188 goto fail_response;
1189 }
1190
4d05a28d
KRW
1191 preq.nr_sects = 0;
1192
1193 pending_req->blkif = blkif;
97e36834 1194 pending_req->id = req->u.rw.id;
402b27f9 1195 pending_req->operation = req_operation;
4d05a28d
KRW
1196 pending_req->status = BLKIF_RSP_OKAY;
1197 pending_req->nr_pages = nseg;
e9350493 1198
402b27f9
RPM
1199 if (req->operation != BLKIF_OP_INDIRECT) {
1200 preq.dev = req->u.rw.handle;
1201 preq.sector_number = req->u.rw.sector_number;
1202 for (i = 0; i < nseg; i++) {
bb642e83 1203 pages[i]->gref = req->u.rw.seg[i].gref;
402b27f9
RPM
1204 seg[i].nsec = req->u.rw.seg[i].last_sect -
1205 req->u.rw.seg[i].first_sect + 1;
1206 seg[i].offset = (req->u.rw.seg[i].first_sect << 9);
1207 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
1208 (req->u.rw.seg[i].last_sect <
1209 req->u.rw.seg[i].first_sect))
1210 goto fail_response;
1211 preq.nr_sects += seg[i].nsec;
1212 }
1213 } else {
1214 preq.dev = req->u.indirect.handle;
1215 preq.sector_number = req->u.indirect.sector_number;
1216 if (xen_blkbk_parse_indirect(req, pending_req, seg, &preq))
4d05a28d 1217 goto fail_response;
4d05a28d
KRW
1218 }
1219
3d814731 1220 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
22b20f2d 1221 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
ebe81906
KRW
1222 operation == READ ? "read" : "write",
1223 preq.sector_number,
a72d9002
CG
1224 preq.sector_number + preq.nr_sects,
1225 blkif->vbd.pdevice);
1a95fe6e 1226 goto fail_response;
4d05a28d 1227 }
01f37f2d
KRW
1228
1229 /*
3d814731 1230 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
01f37f2d
KRW
1231 * is set there.
1232 */
e9350493
KRW
1233 for (i = 0; i < nseg; i++) {
1234 if (((int)preq.sector_number|(int)seg[i].nsec) &
1235 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
22b20f2d 1236 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
ebe81906 1237 blkif->domid);
e9350493
KRW
1238 goto fail_response;
1239 }
1240 }
01f37f2d 1241
29bde093
KRW
1242 /* Wait on all outstanding I/O's and once that has been completed
1243 * issue the WRITE_FLUSH.
1244 */
1245 if (drain)
1246 xen_blk_drain_io(pending_req->blkif);
1247
01f37f2d
KRW
1248 /*
1249 * If we have failed at this point, we need to undo the M2P override,
2e9977c2
KRW
1250 * set gnttab_set_unmap_op on all of the grant references and perform
1251 * the hypercall to unmap the grants - that is all done in
9f3aedf5 1252 * xen_blkbk_unmap.
2e9977c2 1253 */
bb642e83 1254 if (xen_blkbk_map_seg(pending_req))
4d05a28d
KRW
1255 goto fail_flush;
1256
b3cb0d6a
LD
1257 /*
1258 * This corresponding xen_blkif_put is done in __end_block_io_op, or
1259 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
1260 */
8b6bf747 1261 xen_blkif_get(blkif);
c05f3e3c 1262 atomic_inc(&blkif->inflight);
4d05a28d
KRW
1263
1264 for (i = 0; i < nseg; i++) {
4d05a28d
KRW
1265 while ((bio == NULL) ||
1266 (bio_add_page(bio,
bb642e83 1267 pages[i]->page,
4d05a28d 1268 seg[i].nsec << 9,
ffb1dabd 1269 seg[i].offset) == 0)) {
2e9977c2 1270
1e0f7a21
RPM
1271 int nr_iovecs = min_t(int, (nseg-i), BIO_MAX_PAGES);
1272 bio = bio_alloc(GFP_KERNEL, nr_iovecs);
4d05a28d
KRW
1273 if (unlikely(bio == NULL))
1274 goto fail_put_bio;
1275
03e0edf9 1276 biolist[nbio++] = bio;
4d05a28d
KRW
1277 bio->bi_bdev = preq.bdev;
1278 bio->bi_private = pending_req;
1279 bio->bi_end_io = end_block_io_op;
4f024f37 1280 bio->bi_iter.bi_sector = preq.sector_number;
4d05a28d
KRW
1281 }
1282
1283 preq.sector_number += seg[i].nsec;
1284 }
1285
b3cb0d6a 1286 /* This will be hit if the operation was a flush or discard. */
4d05a28d 1287 if (!bio) {
42146352 1288 BUG_ON(operation != WRITE_FLUSH);
b0f80127 1289
42146352
KRW
1290 bio = bio_alloc(GFP_KERNEL, 0);
1291 if (unlikely(bio == NULL))
1292 goto fail_put_bio;
4d05a28d 1293
42146352
KRW
1294 biolist[nbio++] = bio;
1295 bio->bi_bdev = preq.bdev;
1296 bio->bi_private = pending_req;
1297 bio->bi_end_io = end_block_io_op;
4d05a28d
KRW
1298 }
1299
77089926 1300 atomic_set(&pending_req->pendcnt, nbio);
a19be5f0
KRW
1301 blk_start_plug(&plug);
1302
77089926
KRW
1303 for (i = 0; i < nbio; i++)
1304 submit_bio(operation, biolist[i]);
1305
a19be5f0 1306 /* Let the I/Os go.. */
3d68b399 1307 blk_finish_plug(&plug);
a19be5f0 1308
4d05a28d
KRW
1309 if (operation == READ)
1310 blkif->st_rd_sect += preq.nr_sects;
5c62cb48 1311 else if (operation & WRITE)
4d05a28d
KRW
1312 blkif->st_wr_sect += preq.nr_sects;
1313
fc53bf75 1314 return 0;
4d05a28d
KRW
1315
1316 fail_flush:
bb642e83 1317 xen_blkbk_unmap(blkif, pending_req->segments,
31552ee3 1318 pending_req->nr_pages);
4d05a28d 1319 fail_response:
0faa8cca 1320 /* Haven't submitted any bio's yet. */
402b27f9 1321 make_response(blkif, req->u.rw.id, req_operation, BLKIF_RSP_ERROR);
bf0720c4 1322 free_req(blkif, pending_req);
4d05a28d 1323 msleep(1); /* back off a bit */
fc53bf75 1324 return -EIO;
4d05a28d
KRW
1325
1326 fail_put_bio:
03e0edf9 1327 for (i = 0; i < nbio; i++)
77089926 1328 bio_put(biolist[i]);
0e5e098a 1329 atomic_set(&pending_req->pendcnt, 1);
4d05a28d 1330 __end_block_io_op(pending_req, -EINVAL);
4d05a28d 1331 msleep(1); /* back off a bit */
fc53bf75 1332 return -EIO;
4d05a28d
KRW
1333}
1334
1335
1336
a1397fa3
KRW
1337/*
1338 * Put a response on the ring on how the operation fared.
4d05a28d 1339 */
30fd1502 1340static void make_response(struct xen_blkif *blkif, u64 id,
4d05a28d
KRW
1341 unsigned short op, int st)
1342{
88122933 1343 struct blkif_response resp;
4d05a28d 1344 unsigned long flags;
88122933 1345 union blkif_back_rings *blk_rings = &blkif->blk_rings;
4d05a28d
KRW
1346 int notify;
1347
1348 resp.id = id;
1349 resp.operation = op;
1350 resp.status = st;
1351
1352 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
1353 /* Place on the response ring for the relevant domain. */
1354 switch (blkif->blk_protocol) {
1355 case BLKIF_PROTOCOL_NATIVE:
1356 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
1357 &resp, sizeof(resp));
1358 break;
1359 case BLKIF_PROTOCOL_X86_32:
1360 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
1361 &resp, sizeof(resp));
1362 break;
1363 case BLKIF_PROTOCOL_X86_64:
1364 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
1365 &resp, sizeof(resp));
1366 break;
1367 default:
1368 BUG();
1369 }
1370 blk_rings->common.rsp_prod_pvt++;
1371 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
4d05a28d 1372 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
4d05a28d
KRW
1373 if (notify)
1374 notify_remote_via_irq(blkif->irq);
1375}
1376
8b6bf747 1377static int __init xen_blkif_init(void)
4d05a28d 1378{
8770b268 1379 int rc = 0;
4d05a28d 1380
b2167ba6 1381 if (!xen_domain())
4d05a28d
KRW
1382 return -ENODEV;
1383
8b6bf747 1384 rc = xen_blkif_interface_init();
8770b268
KRW
1385 if (rc)
1386 goto failed_init;
4d05a28d 1387
8b6bf747 1388 rc = xen_blkif_xenbus_init();
8770b268
KRW
1389 if (rc)
1390 goto failed_init;
4d05a28d 1391
8770b268 1392 failed_init:
8770b268 1393 return rc;
4d05a28d
KRW
1394}
1395
8b6bf747 1396module_init(xen_blkif_init);
4d05a28d
KRW
1397
1398MODULE_LICENSE("Dual BSD/GPL");
a7e9357f 1399MODULE_ALIAS("xen-backend:vbd");