blob: 211b2005f963fffdb07b3a9cb2f913b5dd7362f4 [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>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070042
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080043#include <xen/events.h>
44#include <xen/page.h>
45#include <asm/xen/hypervisor.h>
46#include <asm/xen/hypercall.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040047#include "common.h"
48
Tom Goetz314146e2011-03-17 12:14:29 -040049#define WRITE_BARRIER (REQ_WRITE | REQ_FLUSH | REQ_FUA)
50
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040051/*
52 * These are rather arbitrary. They are fairly large because adjacent requests
53 * pulled from a communication ring are quite likely to end up being part of
54 * the same scatter/gather request at the disc.
55 *
56 * ** TRY INCREASING 'blkif_reqs' IF WRITE SPEEDS SEEM TOO LOW **
57 *
58 * This will increase the chances of being able to write whole tracks.
59 * 64 should be enough to keep us competitive with Linux.
60 */
61static int blkif_reqs = 64;
62module_param_named(reqs, blkif_reqs, int, 0);
63MODULE_PARM_DESC(reqs, "Number of blkback requests to allocate");
64
65/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040066static unsigned int log_stats;
67static unsigned int debug_lvl;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040068module_param(log_stats, int, 0644);
69module_param(debug_lvl, int, 0644);
70
71/*
72 * Each outstanding request that we've passed to the lower device layers has a
73 * 'pending_req' allocated to it. Each buffer_head that completes decrements
74 * the pendcnt towards zero. When it hits zero, the specified domain has a
75 * response queued for it, with the saved 'id' passed back.
76 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040077struct pending_req {
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -040078 struct blkif_st *blkif;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040079 u64 id;
80 int nr_pages;
81 atomic_t pendcnt;
82 unsigned short operation;
83 int status;
84 struct list_head free_list;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040085};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040086
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040087#define BLKBACK_INVALID_HANDLE (~0)
88
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050089struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040090 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040091 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050092 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040093 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050094 spinlock_t pending_free_lock;
95 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040096 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050097 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040098 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050099 grant_handle_t *pending_grant_handles;
100};
101
102static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400103
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400104/*
105 * Little helpful macro to figure out the index and virtual address of the
106 * pending_pages[..]. For each 'pending_req' we have have up to
107 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
108 * 10 and would index in the pending_pages[..]. */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400109static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400110{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400111 return (req - blkbk->pending_reqs) *
112 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400113}
114
Jan Beulichefe08a32010-02-05 14:19:33 -0500115#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
116
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400117static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400118{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500119 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400120 return (unsigned long)pfn_to_kaddr(pfn);
121}
122
123#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500124 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400125
126
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400127static int do_block_io_op(struct blkif_st *blkif);
128static void dispatch_rw_block_io(struct blkif_st *blkif,
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800129 struct blkif_request *req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400130 struct pending_req *pending_req);
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400131static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400132 unsigned short op, int st);
133
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400134/*
135 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400136 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400137static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400138{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400139 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400140 unsigned long flags;
141
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500142 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
143 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400144 req = list_entry(blkbk->pending_free.next, struct pending_req,
145 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400146 list_del(&req->free_list);
147 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500148 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400149 return req;
150}
151
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400152/*
153 * Return the 'pending_req' structure back to the freepool. We also
154 * wake up the thread if it was waiting for a free page.
155 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400156static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400157{
158 unsigned long flags;
159 int was_empty;
160
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500161 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
162 was_empty = list_empty(&blkbk->pending_free);
163 list_add(&req->free_list, &blkbk->pending_free);
164 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400165 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500166 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400167}
168
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400169/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400170 * Notification from the guest OS.
171 */
172static void blkif_notify_work(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400173{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400174 blkif->waiting_reqs = 1;
175 wake_up(&blkif->wq);
176}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400177
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400178irqreturn_t blkif_be_int(int irq, void *dev_id)
179{
180 blkif_notify_work(dev_id);
181 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400182}
183
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400184/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400185 * SCHEDULER FUNCTIONS
186 */
187
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400188static void print_stats(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400189{
190 printk(KERN_DEBUG "%s: oo %3d | rd %4d | wr %4d | br %4d\n",
191 current->comm, blkif->st_oo_req,
192 blkif->st_rd_req, blkif->st_wr_req, blkif->st_br_req);
193 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
194 blkif->st_rd_req = 0;
195 blkif->st_wr_req = 0;
196 blkif->st_oo_req = 0;
197}
198
199int blkif_schedule(void *arg)
200{
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400201 struct blkif_st *blkif = arg;
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800202 struct vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400203
204 blkif_get(blkif);
205
206 if (debug_lvl)
207 printk(KERN_DEBUG "%s: started\n", current->comm);
208
209 while (!kthread_should_stop()) {
210 if (try_to_freeze())
211 continue;
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800212 if (unlikely(vbd->size != vbd_size(vbd)))
213 vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400214
215 wait_event_interruptible(
216 blkif->wq,
217 blkif->waiting_reqs || kthread_should_stop());
218 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500219 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400220 !list_empty(&blkbk->pending_free) ||
221 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400222
223 blkif->waiting_reqs = 0;
224 smp_mb(); /* clear flag *before* checking for work */
225
226 if (do_block_io_op(blkif))
227 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400228
229 if (log_stats && time_after(jiffies, blkif->st_print))
230 print_stats(blkif);
231 }
232
233 if (log_stats)
234 print_stats(blkif);
235 if (debug_lvl)
236 printk(KERN_DEBUG "%s: exiting\n", current->comm);
237
238 blkif->xenblkd = NULL;
239 blkif_put(blkif);
240
241 return 0;
242}
243
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400244struct seg_buf {
245 unsigned long buf;
246 unsigned int nsec;
247};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400248/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400249 * Unmap the grant references, and also remove the M2P over-rides
250 * used in the 'pending_req'.
251*/
252static void fast_flush_area(struct pending_req *req)
253{
254 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
255 unsigned int i, invcount = 0;
256 grant_handle_t handle;
257 int ret;
258
259 for (i = 0; i < req->nr_pages; i++) {
260 handle = pending_handle(req, i);
261 if (handle == BLKBACK_INVALID_HANDLE)
262 continue;
263 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
264 GNTMAP_host_map, handle);
265 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
266 invcount++;
267 }
268
269 ret = HYPERVISOR_grant_table_op(
270 GNTTABOP_unmap_grant_ref, unmap, invcount);
271 BUG_ON(ret);
272 /* Note, we use invcount, so nr->pages, so we can't index
273 * using vaddr(req, i).
274 */
275 for (i = 0; i < invcount; i++) {
276 ret = m2p_remove_override(
277 virt_to_page(unmap[i].host_addr), false);
278 if (ret) {
279 printk(KERN_ALERT "Failed to remove M2P override for " \
280 "%lx\n", (unsigned long)unmap[i].host_addr);
281 continue;
282 }
283 }
284}
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400285static int xen_blk_map_buf(struct blkif_request *req, struct pending_req *pending_req,
286 struct seg_buf seg[])
287{
288 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
289 int i;
290 int nseg = req->nr_segments;
291 int ret = 0;
292 /* Fill out preq.nr_sects with proper amount of sectors, and setup
293 * assign map[..] with the PFN of the page in our domain with the
294 * corresponding grant reference for each page.
295 */
296 for (i = 0; i < nseg; i++) {
297 uint32_t flags;
298
299 flags = GNTMAP_host_map;
300 if (pending_req->operation != BLKIF_OP_READ)
301 flags |= GNTMAP_readonly;
302 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
303 req->u.rw.seg[i].gref, pending_req->blkif->domid);
304 }
305
306 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
307 BUG_ON(ret);
308
309 /* Now swizzel the MFN in our domain with the MFN from the other domain
310 * so that when we access vaddr(pending_req,i) it has the contents of
311 * the page from the other domain.
312 */
313 for (i = 0; i < nseg; i++) {
314 if (unlikely(map[i].status != 0)) {
315 DPRINTK("invalid buffer -- could not remap it\n");
316 map[i].handle = BLKBACK_INVALID_HANDLE;
317 ret |= 1;
318 }
319
320 pending_handle(pending_req, i) = map[i].handle;
321
322 if (ret)
323 continue;
324
325 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
326 blkbk->pending_page(pending_req, i), false);
327 if (ret) {
328 printk(KERN_ALERT "Failed to install M2P override for"\
329 " %lx (ret: %d)\n", (unsigned long)
330 map[i].dev_bus_addr, ret);
331 /* We could switch over to GNTTABOP_copy */
332 continue;
333 }
334
335 seg[i].buf = map[i].dev_bus_addr |
336 (req->u.rw.seg[i].first_sect << 9);
337 }
338 return ret;
339}
340
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400341/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400342 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400343 */
344
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400345static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400346{
347 /* An error fails the entire request. */
348 if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
349 (error == -EOPNOTSUPP)) {
350 DPRINTK("blkback: write barrier op failed, not supported\n");
351 blkback_barrier(XBT_NIL, pending_req->blkif->be, 0);
352 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
353 } else if (error) {
354 DPRINTK("Buffer not up-to-date at end of operation, "
355 "error=%d\n", error);
356 pending_req->status = BLKIF_RSP_ERROR;
357 }
358
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400359 /* If all of the bio's have completed it is time to unmap
360 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400361 * the proper response on the ring.
362 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400363 if (atomic_dec_and_test(&pending_req->pendcnt)) {
364 fast_flush_area(pending_req);
365 make_response(pending_req->blkif, pending_req->id,
366 pending_req->operation, pending_req->status);
367 blkif_put(pending_req->blkif);
368 free_req(pending_req);
369 }
370}
371
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400372/*
373 * bio callback.
374 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800375static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400376{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400377 __end_block_io_op(bio->bi_private, error);
378 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400379}
380
381
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400382
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400383/*
384 * Function to copy the from the ring buffer the 'struct blkif_request'
385 * (which has the sectors we want, number of them, grant references, etc),
386 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400387 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400388static int do_block_io_op(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400389{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800390 union blkif_back_rings *blk_rings = &blkif->blk_rings;
391 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400392 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400393 RING_IDX rc, rp;
394 int more_to_do = 0;
395
396 rc = blk_rings->common.req_cons;
397 rp = blk_rings->common.sring->req_prod;
398 rmb(); /* Ensure we see queued requests up to 'rp'. */
399
400 while (rc != rp) {
401
402 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
403 break;
404
Keir Fraser8270b452009-03-06 08:29:15 +0000405 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400406 more_to_do = 1;
407 break;
408 }
409
Keir Fraser8270b452009-03-06 08:29:15 +0000410 pending_req = alloc_req();
411 if (NULL == pending_req) {
412 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400413 more_to_do = 1;
414 break;
415 }
416
417 switch (blkif->blk_protocol) {
418 case BLKIF_PROTOCOL_NATIVE:
419 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
420 break;
421 case BLKIF_PROTOCOL_X86_32:
422 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
423 break;
424 case BLKIF_PROTOCOL_X86_64:
425 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
426 break;
427 default:
428 BUG();
429 }
430 blk_rings->common.req_cons = ++rc; /* before make_response() */
431
432 /* Apply all sanity checks to /private copy/ of request. */
433 barrier();
434
435 switch (req.operation) {
436 case BLKIF_OP_READ:
437 blkif->st_rd_req++;
438 dispatch_rw_block_io(blkif, &req, pending_req);
439 break;
440 case BLKIF_OP_WRITE_BARRIER:
441 blkif->st_br_req++;
442 /* fall through */
443 case BLKIF_OP_WRITE:
444 blkif->st_wr_req++;
445 dispatch_rw_block_io(blkif, &req, pending_req);
446 break;
447 default:
448 /* A good sign something is wrong: sleep for a while to
449 * avoid excessive CPU consumption by a bad guest. */
450 msleep(1);
451 DPRINTK("error: unknown block io operation [%d]\n",
452 req.operation);
453 make_response(blkif, req.id, req.operation,
454 BLKIF_RSP_ERROR);
455 free_req(pending_req);
456 break;
457 }
458
459 /* Yield point for this unbounded loop. */
460 cond_resched();
461 }
462
463 return more_to_do;
464}
465
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400466/*
467 * Transumation of the 'struct blkif_request' to a proper 'struct bio'
468 * and call the 'submit_bio' to pass it to the underlaying storage.
469 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400470static void dispatch_rw_block_io(struct blkif_st *blkif,
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800471 struct blkif_request *req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400472 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400473{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400474 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400475 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400476 unsigned int nseg;
477 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400478 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400479 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400480 int operation;
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400481 struct blk_plug plug;
482 struct request_queue *q;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400483
484 switch (req->operation) {
485 case BLKIF_OP_READ:
486 operation = READ;
487 break;
488 case BLKIF_OP_WRITE:
489 operation = WRITE;
490 break;
491 case BLKIF_OP_WRITE_BARRIER:
Tom Goetz314146e2011-03-17 12:14:29 -0400492 operation = WRITE_BARRIER;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400493 break;
494 default:
495 operation = 0; /* make gcc happy */
496 BUG();
497 }
498
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400499 /* Check that the number of segments is sane. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400500 nseg = req->nr_segments;
Tom Goetz314146e2011-03-17 12:14:29 -0400501 if (unlikely(nseg == 0 && operation != WRITE_BARRIER) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400502 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
503 DPRINTK("Bad number of segments in request (%d)\n", nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400504 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400505 goto fail_response;
506 }
507
508 preq.dev = req->handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500509 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400510 preq.nr_sects = 0;
511
512 pending_req->blkif = blkif;
513 pending_req->id = req->id;
514 pending_req->operation = req->operation;
515 pending_req->status = BLKIF_RSP_OKAY;
516 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400517 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500518 seg[i].nsec = req->u.rw.seg[i].last_sect -
519 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500520 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
521 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400522 goto fail_response;
523 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400524 }
525
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400526 if (vbd_translate(&preq, blkif, operation) != 0) {
527 DPRINTK("access denied: %s of [%llu,%llu] on dev=%04x\n",
528 operation == READ ? "read" : "write",
529 preq.sector_number,
530 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400531 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400532 }
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400533 /* If we have failed at this point, we need to undo the M2P override,
534 * set gnttab_set_unmap_op on all of the grant references and perform
535 * the hypercall to unmap the grants - that is all done in
536 * fast_flush_area.
537 */
538 if (xen_blk_map_buf(req, pending_req, seg))
539 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400540
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400541 /* This corresponding blkif_put is done in __end_block_io_op */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400542 blkif_get(blkif);
543
544 for (i = 0; i < nseg; i++) {
545 if (((int)preq.sector_number|(int)seg[i].nsec) &
Jeremy Fitzhardinge05d43862009-06-29 14:58:45 -0700546 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400547 DPRINTK("Misaligned I/O request from domain %d",
548 blkif->domid);
549 goto fail_put_bio;
550 }
551
552 while ((bio == NULL) ||
553 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500554 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400555 seg[i].nsec << 9,
556 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400557
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400558 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400559 if (unlikely(bio == NULL))
560 goto fail_put_bio;
561
562 bio->bi_bdev = preq.bdev;
563 bio->bi_private = pending_req;
564 bio->bi_end_io = end_block_io_op;
565 bio->bi_sector = preq.sector_number;
566 }
567
568 preq.sector_number += seg[i].nsec;
569 }
570
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400571 /* This will be hit if the operation was a barrier. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400572 if (!bio) {
Tom Goetz314146e2011-03-17 12:14:29 -0400573 BUG_ON(operation != WRITE_BARRIER);
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400574 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400575 if (unlikely(bio == NULL))
576 goto fail_put_bio;
577
578 bio->bi_bdev = preq.bdev;
579 bio->bi_private = pending_req;
580 bio->bi_end_io = end_block_io_op;
581 bio->bi_sector = -1;
582 }
583
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400584
585 /* We set it one so that the last submit_bio does not have to call
586 * atomic_inc.
587 */
588 atomic_set(&pending_req->pendcnt, nbio);
589
590 /* Get a reference count for the disk queue and start sending I/O */
591 blk_get_queue(q);
592 blk_start_plug(&plug);
593
594 for (i = 0; i < nbio; i++)
595 submit_bio(operation, biolist[i]);
596
597 blk_finish_plug(&plug);
598 /* Let the I/Os go.. */
599 blk_put_queue(q);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400600
601 if (operation == READ)
602 blkif->st_rd_sect += preq.nr_sects;
Tom Goetz314146e2011-03-17 12:14:29 -0400603 else if (operation == WRITE || operation == WRITE_BARRIER)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400604 blkif->st_wr_sect += preq.nr_sects;
605
606 return;
607
608 fail_flush:
609 fast_flush_area(pending_req);
610 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400611 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400612 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
613 free_req(pending_req);
614 msleep(1); /* back off a bit */
615 return;
616
617 fail_put_bio:
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400618 for (i = 0; i < (nbio-1); i++)
619 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400620 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400621 msleep(1); /* back off a bit */
622 return;
623}
624
625
626
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400627/*
628 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400629 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400630static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400631 unsigned short op, int st)
632{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800633 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400634 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800635 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400636 int more_to_do = 0;
637 int notify;
638
639 resp.id = id;
640 resp.operation = op;
641 resp.status = st;
642
643 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
644 /* Place on the response ring for the relevant domain. */
645 switch (blkif->blk_protocol) {
646 case BLKIF_PROTOCOL_NATIVE:
647 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
648 &resp, sizeof(resp));
649 break;
650 case BLKIF_PROTOCOL_X86_32:
651 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
652 &resp, sizeof(resp));
653 break;
654 case BLKIF_PROTOCOL_X86_64:
655 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
656 &resp, sizeof(resp));
657 break;
658 default:
659 BUG();
660 }
661 blk_rings->common.rsp_prod_pvt++;
662 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
663 if (blk_rings->common.rsp_prod_pvt == blk_rings->common.req_cons) {
664 /*
665 * Tail check for pending requests. Allows frontend to avoid
666 * notifications if requests are already in flight (lower
667 * overheads and promotes batching).
668 */
669 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
670
671 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blk_rings->common)) {
672 more_to_do = 1;
673 }
674
675 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
676
677 if (more_to_do)
678 blkif_notify_work(blkif);
679 if (notify)
680 notify_remote_via_irq(blkif->irq);
681}
682
683static int __init blkif_init(void)
684{
685 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400686 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400687
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800688 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400689 return -ENODEV;
690
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400691 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500692 if (!blkbk) {
693 printk(KERN_ALERT "%s: out of memory!\n", __func__);
694 return -ENOMEM;
695 }
696
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400697 mmap_pages = blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
698
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500699 blkbk->pending_reqs = kmalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400700 blkif_reqs, GFP_KERNEL);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400701 blkbk->pending_grant_handles = kzalloc(sizeof(blkbk->pending_grant_handles[0]) *
702 mmap_pages, GFP_KERNEL);
703 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
704 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400705
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400706 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
707 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400708 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400709 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400710 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400711
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500712 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500713 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400714 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500715 if (blkbk->pending_pages[i] == NULL) {
716 rc = -ENOMEM;
717 goto out_of_memory;
718 }
719 }
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400720 rc = blkif_interface_init();
721 if (rc)
722 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400723
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500724 memset(blkbk->pending_reqs, 0, sizeof(blkbk->pending_reqs));
725
726 INIT_LIST_HEAD(&blkbk->pending_free);
727 spin_lock_init(&blkbk->pending_free_lock);
728 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400729
730 for (i = 0; i < blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400731 list_add_tail(&blkbk->pending_reqs[i].free_list,
732 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400733
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400734 rc = blkif_xenbus_init();
735 if (rc)
736 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400737
738 return 0;
739
740 out_of_memory:
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400741 printk(KERN_ERR "%s: out of memory\n", __func__);
742 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500743 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400744 kfree(blkbk->pending_grant_handles);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500745 for (i = 0; i < mmap_pages; i++) {
746 if (blkbk->pending_pages[i])
747 __free_page(blkbk->pending_pages[i]);
748 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400749 kfree(blkbk->pending_pages);
750 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500751 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400752 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400753}
754
755module_init(blkif_init);
756
757MODULE_LICENSE("Dual BSD/GPL");