blob: 9dee5454740f60ea681fd43946f68142f5c4f8de [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
49/*
50 * These are rather arbitrary. They are fairly large because adjacent requests
51 * pulled from a communication ring are quite likely to end up being part of
52 * the same scatter/gather request at the disc.
53 *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040054 * ** TRY INCREASING 'xen_blkif_reqs' IF WRITE SPEEDS SEEM TOO LOW **
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040055 *
56 * This will increase the chances of being able to write whole tracks.
57 * 64 should be enough to keep us competitive with Linux.
58 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040059static int xen_blkif_reqs = 64;
60module_param_named(reqs, xen_blkif_reqs, int, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040061MODULE_PARM_DESC(reqs, "Number of blkback requests to allocate");
62
63/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040064static unsigned int log_stats;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040065module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040066
67/*
68 * Each outstanding request that we've passed to the lower device layers has a
69 * 'pending_req' allocated to it. Each buffer_head that completes decrements
70 * the pendcnt towards zero. When it hits zero, the specified domain has a
71 * response queued for it, with the saved 'id' passed back.
72 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040073struct pending_req {
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040074 struct xen_blkif *blkif;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040075 u64 id;
76 int nr_pages;
77 atomic_t pendcnt;
78 unsigned short operation;
79 int status;
80 struct list_head free_list;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040081};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040082
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040083#define BLKBACK_INVALID_HANDLE (~0)
84
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050085struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040086 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040087 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050088 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040089 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050090 spinlock_t pending_free_lock;
91 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040092 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050093 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040094 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050095 grant_handle_t *pending_grant_handles;
96};
97
98static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040099
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400100/*
101 * Little helpful macro to figure out the index and virtual address of the
102 * pending_pages[..]. For each 'pending_req' we have have up to
103 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400104 * 10 and would index in the pending_pages[..].
105 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400106static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400107{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400108 return (req - blkbk->pending_reqs) *
109 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400110}
111
Jan Beulichefe08a32010-02-05 14:19:33 -0500112#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
113
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400114static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400115{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500116 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400117 return (unsigned long)pfn_to_kaddr(pfn);
118}
119
120#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500121 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400122
123
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400124static int do_block_io_op(struct xen_blkif *blkif);
125static int dispatch_rw_block_io(struct xen_blkif *blkif,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400126 struct blkif_request *req,
127 struct pending_req *pending_req);
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400128static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400129 unsigned short op, int st);
130
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400131/*
132 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400133 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400134static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400135{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400136 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400137 unsigned long flags;
138
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500139 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
140 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400141 req = list_entry(blkbk->pending_free.next, struct pending_req,
142 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400143 list_del(&req->free_list);
144 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500145 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400146 return req;
147}
148
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400149/*
150 * Return the 'pending_req' structure back to the freepool. We also
151 * wake up the thread if it was waiting for a free page.
152 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400153static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400154{
155 unsigned long flags;
156 int was_empty;
157
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500158 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
159 was_empty = list_empty(&blkbk->pending_free);
160 list_add(&req->free_list, &blkbk->pending_free);
161 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400162 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500163 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400164}
165
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400166/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400167 * Routines for managing virtual block devices (vbds).
168 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400169static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
170 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400171{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400172 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400173 int rc = -EACCES;
174
175 if ((operation != READ) && vbd->readonly)
176 goto out;
177
178 if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
179 goto out;
180
181 req->dev = vbd->pdevice;
182 req->bdev = vbd->bdev;
183 rc = 0;
184
185 out:
186 return rc;
187}
188
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400189static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400190{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400191 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400192 struct xenbus_transaction xbt;
193 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400194 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400195 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400196
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400197 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400198 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400199 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400200 vbd->size = new_size;
201again:
202 err = xenbus_transaction_start(&xbt);
203 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400204 pr_warn(DRV_PFX "Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400205 return;
206 }
207 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400208 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400209 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400210 pr_warn(DRV_PFX "Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400211 goto abort;
212 }
213 /*
214 * Write the current state; we will use this to synchronize
215 * the front-end. If the current state is "connected" the
216 * front-end will get the new size information online.
217 */
218 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
219 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400220 pr_warn(DRV_PFX "Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400221 goto abort;
222 }
223
224 err = xenbus_transaction_end(xbt, 0);
225 if (err == -EAGAIN)
226 goto again;
227 if (err)
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400228 pr_warn(DRV_PFX "Error ending transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400229abort:
230 xenbus_transaction_end(xbt, 1);
231}
232
233/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400234 * Notification from the guest OS.
235 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400236static void blkif_notify_work(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400237{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400238 blkif->waiting_reqs = 1;
239 wake_up(&blkif->wq);
240}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400241
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400242irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400243{
244 blkif_notify_work(dev_id);
245 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400246}
247
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400248/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400249 * SCHEDULER FUNCTIONS
250 */
251
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400252static void print_stats(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400253{
Konrad Rzeszutek Wilkcca537a2011-05-12 17:23:30 -0400254 pr_info("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400255 current->comm, blkif->st_oo_req,
256 blkif->st_rd_req, blkif->st_wr_req, blkif->st_f_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400257 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
258 blkif->st_rd_req = 0;
259 blkif->st_wr_req = 0;
260 blkif->st_oo_req = 0;
261}
262
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400263int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400264{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400265 struct xen_blkif *blkif = arg;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400266 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400267
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400268 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400269
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400270 while (!kthread_should_stop()) {
271 if (try_to_freeze())
272 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400273 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400274 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400275
276 wait_event_interruptible(
277 blkif->wq,
278 blkif->waiting_reqs || kthread_should_stop());
279 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500280 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400281 !list_empty(&blkbk->pending_free) ||
282 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400283
284 blkif->waiting_reqs = 0;
285 smp_mb(); /* clear flag *before* checking for work */
286
287 if (do_block_io_op(blkif))
288 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400289
290 if (log_stats && time_after(jiffies, blkif->st_print))
291 print_stats(blkif);
292 }
293
294 if (log_stats)
295 print_stats(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400296
297 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400298 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400299
300 return 0;
301}
302
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400303struct seg_buf {
304 unsigned long buf;
305 unsigned int nsec;
306};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400307/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400308 * Unmap the grant references, and also remove the M2P over-rides
309 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400310 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400311static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400312{
313 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
314 unsigned int i, invcount = 0;
315 grant_handle_t handle;
316 int ret;
317
318 for (i = 0; i < req->nr_pages; i++) {
319 handle = pending_handle(req, i);
320 if (handle == BLKBACK_INVALID_HANDLE)
321 continue;
322 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
323 GNTMAP_host_map, handle);
324 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
325 invcount++;
326 }
327
328 ret = HYPERVISOR_grant_table_op(
329 GNTTABOP_unmap_grant_ref, unmap, invcount);
330 BUG_ON(ret);
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400331 /*
332 * Note, we use invcount, so nr->pages, so we can't index
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400333 * using vaddr(req, i).
334 */
335 for (i = 0; i < invcount; i++) {
336 ret = m2p_remove_override(
337 virt_to_page(unmap[i].host_addr), false);
338 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400339 pr_alert(DRV_PFX "Failed to remove M2P override for %lx\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400340 (unsigned long)unmap[i].host_addr);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400341 continue;
342 }
343 }
344}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400345
346static int xen_blkbk_map(struct blkif_request *req,
347 struct pending_req *pending_req,
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400348 struct seg_buf seg[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400349{
350 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
351 int i;
352 int nseg = req->nr_segments;
353 int ret = 0;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400354
355 /*
356 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400357 * assign map[..] with the PFN of the page in our domain with the
358 * corresponding grant reference for each page.
359 */
360 for (i = 0; i < nseg; i++) {
361 uint32_t flags;
362
363 flags = GNTMAP_host_map;
364 if (pending_req->operation != BLKIF_OP_READ)
365 flags |= GNTMAP_readonly;
366 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400367 req->u.rw.seg[i].gref,
368 pending_req->blkif->domid);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400369 }
370
371 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
372 BUG_ON(ret);
373
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400374 /*
375 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400376 * so that when we access vaddr(pending_req,i) it has the contents of
377 * the page from the other domain.
378 */
379 for (i = 0; i < nseg; i++) {
380 if (unlikely(map[i].status != 0)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400381 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400382 map[i].handle = BLKBACK_INVALID_HANDLE;
383 ret |= 1;
384 }
385
386 pending_handle(pending_req, i) = map[i].handle;
387
388 if (ret)
389 continue;
390
391 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
392 blkbk->pending_page(pending_req, i), false);
393 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400394 pr_alert(DRV_PFX "Failed to install M2P override for %lx (ret: %d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400395 (unsigned long)map[i].dev_bus_addr, ret);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400396 /* We could switch over to GNTTABOP_copy */
397 continue;
398 }
399
400 seg[i].buf = map[i].dev_bus_addr |
401 (req->u.rw.seg[i].first_sect << 9);
402 }
403 return ret;
404}
405
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400406/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400407 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400408 */
409
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400410static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400411{
412 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400413 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400414 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400415 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400416 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400417 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
418 } else if (error) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400419 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400420 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400421 pending_req->status = BLKIF_RSP_ERROR;
422 }
423
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400424 /*
425 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400426 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400427 * the proper response on the ring.
428 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400429 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400430 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400431 make_response(pending_req->blkif, pending_req->id,
432 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400433 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400434 free_req(pending_req);
435 }
436}
437
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400438/*
439 * bio callback.
440 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800441static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400442{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400443 __end_block_io_op(bio->bi_private, error);
444 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400445}
446
447
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400448
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400449/*
450 * Function to copy the from the ring buffer the 'struct blkif_request'
451 * (which has the sectors we want, number of them, grant references, etc),
452 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400453 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400454static int do_block_io_op(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400455{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800456 union blkif_back_rings *blk_rings = &blkif->blk_rings;
457 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400458 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400459 RING_IDX rc, rp;
460 int more_to_do = 0;
461
462 rc = blk_rings->common.req_cons;
463 rp = blk_rings->common.sring->req_prod;
464 rmb(); /* Ensure we see queued requests up to 'rp'. */
465
466 while (rc != rp) {
467
468 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
469 break;
470
Keir Fraser8270b452009-03-06 08:29:15 +0000471 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400472 more_to_do = 1;
473 break;
474 }
475
Keir Fraser8270b452009-03-06 08:29:15 +0000476 pending_req = alloc_req();
477 if (NULL == pending_req) {
478 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400479 more_to_do = 1;
480 break;
481 }
482
483 switch (blkif->blk_protocol) {
484 case BLKIF_PROTOCOL_NATIVE:
485 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
486 break;
487 case BLKIF_PROTOCOL_X86_32:
488 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
489 break;
490 case BLKIF_PROTOCOL_X86_64:
491 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
492 break;
493 default:
494 BUG();
495 }
496 blk_rings->common.req_cons = ++rc; /* before make_response() */
497
498 /* Apply all sanity checks to /private copy/ of request. */
499 barrier();
500
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400501 if (dispatch_rw_block_io(blkif, &req, pending_req))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400502 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400503
504 /* Yield point for this unbounded loop. */
505 cond_resched();
506 }
507
508 return more_to_do;
509}
510
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400511/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400512 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
513 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400514 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400515static int dispatch_rw_block_io(struct xen_blkif *blkif,
516 struct blkif_request *req,
517 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400518{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400519 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400520 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400521 unsigned int nseg;
522 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400523 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400524 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400525 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400526 struct blk_plug plug;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400527
528 switch (req->operation) {
529 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400530 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400531 operation = READ;
532 break;
533 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400534 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400535 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400536 break;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400537 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400538 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400539 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400540 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400541 * The frontend likes to set this to -1, which xen_vbd_translate
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400542 * is alergic too.
543 */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400544 req->u.rw.sector_number = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400545 break;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400546 case BLKIF_OP_WRITE_BARRIER:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400547 default:
548 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400549 goto fail_response;
550 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400551 }
552
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400553 /* Check that the number of segments is sane. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400554 nseg = req->nr_segments;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400555 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400556 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400557 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400558 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400559 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400560 goto fail_response;
561 }
562
563 preq.dev = req->handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500564 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400565 preq.nr_sects = 0;
566
567 pending_req->blkif = blkif;
568 pending_req->id = req->id;
569 pending_req->operation = req->operation;
570 pending_req->status = BLKIF_RSP_OKAY;
571 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400572
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400573 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500574 seg[i].nsec = req->u.rw.seg[i].last_sect -
575 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500576 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
577 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400578 goto fail_response;
579 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400580
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400581 }
582
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400583 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400584 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400585 operation == READ ? "read" : "write",
586 preq.sector_number,
587 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400588 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400589 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400590
591 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400592 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400593 * is set there.
594 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400595 for (i = 0; i < nseg; i++) {
596 if (((int)preq.sector_number|(int)seg[i].nsec) &
597 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400598 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400599 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400600 goto fail_response;
601 }
602 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400603
604 /*
605 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400606 * set gnttab_set_unmap_op on all of the grant references and perform
607 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400608 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400609 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400610 if (xen_blkbk_map(req, pending_req, seg))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400611 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400612
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400613 /* This corresponding xen_blkif_put is done in __end_block_io_op */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400614 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400615
616 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400617 while ((bio == NULL) ||
618 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500619 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400620 seg[i].nsec << 9,
621 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400622
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400623 bio = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400624 if (unlikely(bio == NULL))
625 goto fail_put_bio;
626
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400627 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400628 bio->bi_bdev = preq.bdev;
629 bio->bi_private = pending_req;
630 bio->bi_end_io = end_block_io_op;
631 bio->bi_sector = preq.sector_number;
632 }
633
634 preq.sector_number += seg[i].nsec;
635 }
636
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400637 /* This will be hit if the operation was a flush. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400638 if (!bio) {
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400639 BUG_ON(operation != WRITE_FLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -0400640
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400641 bio = bio_alloc(GFP_KERNEL, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400642 if (unlikely(bio == NULL))
643 goto fail_put_bio;
644
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400645 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400646 bio->bi_bdev = preq.bdev;
647 bio->bi_private = pending_req;
648 bio->bi_end_io = end_block_io_op;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400649 }
650
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400651 /*
652 * We set it one so that the last submit_bio does not have to call
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400653 * atomic_inc.
654 */
655 atomic_set(&pending_req->pendcnt, nbio);
656
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400657 /* Get a reference count for the disk queue and start sending I/O */
658 blk_start_plug(&plug);
659
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400660 for (i = 0; i < nbio; i++)
661 submit_bio(operation, biolist[i]);
662
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400663 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400664 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400665
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400666 if (operation == READ)
667 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400668 else if (operation == WRITE || operation == WRITE_FLUSH)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400669 blkif->st_wr_sect += preq.nr_sects;
670
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400671 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400672
673 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400674 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400675 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400676 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400677 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
678 free_req(pending_req);
679 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400680 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400681
682 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400683 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400684 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400685 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400686 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400687 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400688}
689
690
691
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400692/*
693 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400694 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400695static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400696 unsigned short op, int st)
697{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800698 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400699 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800700 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400701 int more_to_do = 0;
702 int notify;
703
704 resp.id = id;
705 resp.operation = op;
706 resp.status = st;
707
708 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
709 /* Place on the response ring for the relevant domain. */
710 switch (blkif->blk_protocol) {
711 case BLKIF_PROTOCOL_NATIVE:
712 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
713 &resp, sizeof(resp));
714 break;
715 case BLKIF_PROTOCOL_X86_32:
716 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
717 &resp, sizeof(resp));
718 break;
719 case BLKIF_PROTOCOL_X86_64:
720 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
721 &resp, sizeof(resp));
722 break;
723 default:
724 BUG();
725 }
726 blk_rings->common.rsp_prod_pvt++;
727 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
728 if (blk_rings->common.rsp_prod_pvt == blk_rings->common.req_cons) {
729 /*
730 * Tail check for pending requests. Allows frontend to avoid
731 * notifications if requests are already in flight (lower
732 * overheads and promotes batching).
733 */
734 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
735
736 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blk_rings->common)) {
737 more_to_do = 1;
738 }
739
740 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
741
742 if (more_to_do)
743 blkif_notify_work(blkif);
744 if (notify)
745 notify_remote_via_irq(blkif->irq);
746}
747
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400748static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400749{
750 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400751 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400752
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800753 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400754 return -ENODEV;
755
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400756 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500757 if (!blkbk) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400758 pr_alert(DRV_PFX "%s: out of memory!\n", __func__);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500759 return -ENOMEM;
760 }
761
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400762 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400763
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500764 blkbk->pending_reqs = kmalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400765 xen_blkif_reqs, GFP_KERNEL);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400766 blkbk->pending_grant_handles = kzalloc(sizeof(blkbk->pending_grant_handles[0]) *
767 mmap_pages, GFP_KERNEL);
768 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
769 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400770
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400771 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
772 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400773 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400774 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400775 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400776
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500777 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500778 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400779 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500780 if (blkbk->pending_pages[i] == NULL) {
781 rc = -ENOMEM;
782 goto out_of_memory;
783 }
784 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400785 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400786 if (rc)
787 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400788
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500789 memset(blkbk->pending_reqs, 0, sizeof(blkbk->pending_reqs));
790
791 INIT_LIST_HEAD(&blkbk->pending_free);
792 spin_lock_init(&blkbk->pending_free_lock);
793 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400794
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400795 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400796 list_add_tail(&blkbk->pending_reqs[i].free_list,
797 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400798
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400799 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400800 if (rc)
801 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400802
803 return 0;
804
805 out_of_memory:
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400806 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400807 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500808 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400809 kfree(blkbk->pending_grant_handles);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500810 for (i = 0; i < mmap_pages; i++) {
811 if (blkbk->pending_pages[i])
812 __free_page(blkbk->pending_pages[i]);
813 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400814 kfree(blkbk->pending_pages);
815 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500816 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400817 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400818}
819
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400820module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400821
822MODULE_LICENSE("Dual BSD/GPL");