blob: 5c9568e39eab398bd70db19463a8b94975833c19 [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;
65static unsigned int debug_lvl;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040066module_param(log_stats, int, 0644);
67module_param(debug_lvl, int, 0644);
68
69/*
70 * Each outstanding request that we've passed to the lower device layers has a
71 * 'pending_req' allocated to it. Each buffer_head that completes decrements
72 * the pendcnt towards zero. When it hits zero, the specified domain has a
73 * response queued for it, with the saved 'id' passed back.
74 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040075struct pending_req {
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040076 struct blkif_st *blkif;
77 u64 id;
78 int nr_pages;
79 atomic_t pendcnt;
80 unsigned short operation;
81 int status;
82 struct list_head free_list;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040083};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040084
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040085#define BLKBACK_INVALID_HANDLE (~0)
86
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050087struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040088 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040089 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050090 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040091 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050092 spinlock_t pending_free_lock;
93 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040094 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050095 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040096 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050097 grant_handle_t *pending_grant_handles;
98};
99
100static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400101
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400102/*
103 * Little helpful macro to figure out the index and virtual address of the
104 * pending_pages[..]. For each 'pending_req' we have have up to
105 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400106 * 10 and would index in the pending_pages[..].
107 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400108static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400109{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400110 return (req - blkbk->pending_reqs) *
111 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400112}
113
Jan Beulichefe08a32010-02-05 14:19:33 -0500114#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
115
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400116static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400117{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500118 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400119 return (unsigned long)pfn_to_kaddr(pfn);
120}
121
122#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500123 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400124
125
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400126static int do_block_io_op(struct blkif_st *blkif);
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400127static int dispatch_rw_block_io(struct blkif_st *blkif,
128 struct blkif_request *req,
129 struct pending_req *pending_req);
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400130static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400131 unsigned short op, int st);
132
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400133/*
134 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400135 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400136static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400137{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400138 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400139 unsigned long flags;
140
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500141 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
142 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400143 req = list_entry(blkbk->pending_free.next, struct pending_req,
144 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400145 list_del(&req->free_list);
146 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500147 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400148 return req;
149}
150
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400151/*
152 * Return the 'pending_req' structure back to the freepool. We also
153 * wake up the thread if it was waiting for a free page.
154 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400155static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400156{
157 unsigned long flags;
158 int was_empty;
159
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500160 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
161 was_empty = list_empty(&blkbk->pending_free);
162 list_add(&req->free_list, &blkbk->pending_free);
163 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400164 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500165 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400166}
167
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400168/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400169 * Routines for managing virtual block devices (vbds).
170 */
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400171static int vbd_translate(struct phys_req *req, struct blkif_st *blkif,
172 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400173{
174 struct vbd *vbd = &blkif->vbd;
175 int rc = -EACCES;
176
177 if ((operation != READ) && vbd->readonly)
178 goto out;
179
180 if (unlikely((req->sector_number + req->nr_sects) > vbd_sz(vbd)))
181 goto out;
182
183 req->dev = vbd->pdevice;
184 req->bdev = vbd->bdev;
185 rc = 0;
186
187 out:
188 return rc;
189}
190
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400191static void vbd_resize(struct blkif_st *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400192{
193 struct vbd *vbd = &blkif->vbd;
194 struct xenbus_transaction xbt;
195 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400196 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400197 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400198
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400199 pr_info("xen-blkback: VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400200 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400201 pr_info("xen-blkback: VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400202 vbd->size = new_size;
203again:
204 err = xenbus_transaction_start(&xbt);
205 if (err) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400206 pr_warn("xen-blkback: Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400207 return;
208 }
209 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400210 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400211 if (err) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400212 pr_warn("xen-blkback: Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400213 goto abort;
214 }
215 /*
216 * Write the current state; we will use this to synchronize
217 * the front-end. If the current state is "connected" the
218 * front-end will get the new size information online.
219 */
220 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
221 if (err) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400222 pr_warn("xen-blkback: Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400223 goto abort;
224 }
225
226 err = xenbus_transaction_end(xbt, 0);
227 if (err == -EAGAIN)
228 goto again;
229 if (err)
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400230 pr_warn("xen-blkback: Error ending transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400231abort:
232 xenbus_transaction_end(xbt, 1);
233}
234
235/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400236 * Notification from the guest OS.
237 */
238static void blkif_notify_work(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400239{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400240 blkif->waiting_reqs = 1;
241 wake_up(&blkif->wq);
242}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400243
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400244irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400245{
246 blkif_notify_work(dev_id);
247 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400248}
249
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400250/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400251 * SCHEDULER FUNCTIONS
252 */
253
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400254static void print_stats(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400255{
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400256 pr_debug("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d\n",
257 current->comm, blkif->st_oo_req,
258 blkif->st_rd_req, blkif->st_wr_req, blkif->st_f_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400259 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
260 blkif->st_rd_req = 0;
261 blkif->st_wr_req = 0;
262 blkif->st_oo_req = 0;
263}
264
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400265int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400266{
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400267 struct blkif_st *blkif = arg;
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800268 struct vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400269
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400270 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400271
272 if (debug_lvl)
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400273 pr_debug("xen-blkback: %s: started\n", current->comm);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400274
275 while (!kthread_should_stop()) {
276 if (try_to_freeze())
277 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400278 if (unlikely(vbd->size != vbd_sz(vbd)))
K. Y. Srinivasan2ccbfe22010-03-11 13:39:50 -0800279 vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400280
281 wait_event_interruptible(
282 blkif->wq,
283 blkif->waiting_reqs || kthread_should_stop());
284 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500285 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400286 !list_empty(&blkbk->pending_free) ||
287 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400288
289 blkif->waiting_reqs = 0;
290 smp_mb(); /* clear flag *before* checking for work */
291
292 if (do_block_io_op(blkif))
293 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400294
295 if (log_stats && time_after(jiffies, blkif->st_print))
296 print_stats(blkif);
297 }
298
299 if (log_stats)
300 print_stats(blkif);
301 if (debug_lvl)
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400302 pr_debug("xen-blkback: %s: exiting\n", current->comm);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400303
304 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400305 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400306
307 return 0;
308}
309
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400310struct seg_buf {
311 unsigned long buf;
312 unsigned int nsec;
313};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400314/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400315 * Unmap the grant references, and also remove the M2P over-rides
316 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400317 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400318static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400319{
320 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
321 unsigned int i, invcount = 0;
322 grant_handle_t handle;
323 int ret;
324
325 for (i = 0; i < req->nr_pages; i++) {
326 handle = pending_handle(req, i);
327 if (handle == BLKBACK_INVALID_HANDLE)
328 continue;
329 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
330 GNTMAP_host_map, handle);
331 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
332 invcount++;
333 }
334
335 ret = HYPERVISOR_grant_table_op(
336 GNTTABOP_unmap_grant_ref, unmap, invcount);
337 BUG_ON(ret);
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400338 /*
339 * Note, we use invcount, so nr->pages, so we can't index
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400340 * using vaddr(req, i).
341 */
342 for (i = 0; i < invcount; i++) {
343 ret = m2p_remove_override(
344 virt_to_page(unmap[i].host_addr), false);
345 if (ret) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400346 pr_alert("xen-blkback: Failed to remove M2P override for %lx\n",
347 (unsigned long)unmap[i].host_addr);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400348 continue;
349 }
350 }
351}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400352
353static int xen_blkbk_map(struct blkif_request *req,
354 struct pending_req *pending_req,
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400355 struct seg_buf seg[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400356{
357 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
358 int i;
359 int nseg = req->nr_segments;
360 int ret = 0;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400361
362 /*
363 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400364 * assign map[..] with the PFN of the page in our domain with the
365 * corresponding grant reference for each page.
366 */
367 for (i = 0; i < nseg; i++) {
368 uint32_t flags;
369
370 flags = GNTMAP_host_map;
371 if (pending_req->operation != BLKIF_OP_READ)
372 flags |= GNTMAP_readonly;
373 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400374 req->u.rw.seg[i].gref,
375 pending_req->blkif->domid);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400376 }
377
378 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
379 BUG_ON(ret);
380
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400381 /*
382 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400383 * so that when we access vaddr(pending_req,i) it has the contents of
384 * the page from the other domain.
385 */
386 for (i = 0; i < nseg; i++) {
387 if (unlikely(map[i].status != 0)) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400388 pr_debug("xen-blkback: invalid buffer -- could not remap it\n");
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400389 map[i].handle = BLKBACK_INVALID_HANDLE;
390 ret |= 1;
391 }
392
393 pending_handle(pending_req, i) = map[i].handle;
394
395 if (ret)
396 continue;
397
398 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
399 blkbk->pending_page(pending_req, i), false);
400 if (ret) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400401 pr_alert("xen-blkback: Failed to install M2P override for %lx (ret: %d)\n",
402 (unsigned long)map[i].dev_bus_addr, ret);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400403 /* We could switch over to GNTTABOP_copy */
404 continue;
405 }
406
407 seg[i].buf = map[i].dev_bus_addr |
408 (req->u.rw.seg[i].first_sect << 9);
409 }
410 return ret;
411}
412
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400413/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400414 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400415 */
416
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400417static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400418{
419 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400420 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400421 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400422 pr_debug("xen-blkback: flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400423 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400424 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
425 } else if (error) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400426 pr_debug("xen-blkback: Buffer not up-to-date at end of operation,"
427 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400428 pending_req->status = BLKIF_RSP_ERROR;
429 }
430
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400431 /*
432 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400433 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400434 * the proper response on the ring.
435 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400436 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400437 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400438 make_response(pending_req->blkif, pending_req->id,
439 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400440 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400441 free_req(pending_req);
442 }
443}
444
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400445/*
446 * bio callback.
447 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800448static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400449{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400450 __end_block_io_op(bio->bi_private, error);
451 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400452}
453
454
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400455
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400456/*
457 * Function to copy the from the ring buffer the 'struct blkif_request'
458 * (which has the sectors we want, number of them, grant references, etc),
459 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400460 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400461static int do_block_io_op(struct blkif_st *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400462{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800463 union blkif_back_rings *blk_rings = &blkif->blk_rings;
464 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400465 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400466 RING_IDX rc, rp;
467 int more_to_do = 0;
468
469 rc = blk_rings->common.req_cons;
470 rp = blk_rings->common.sring->req_prod;
471 rmb(); /* Ensure we see queued requests up to 'rp'. */
472
473 while (rc != rp) {
474
475 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
476 break;
477
Keir Fraser8270b452009-03-06 08:29:15 +0000478 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400479 more_to_do = 1;
480 break;
481 }
482
Keir Fraser8270b452009-03-06 08:29:15 +0000483 pending_req = alloc_req();
484 if (NULL == pending_req) {
485 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400486 more_to_do = 1;
487 break;
488 }
489
490 switch (blkif->blk_protocol) {
491 case BLKIF_PROTOCOL_NATIVE:
492 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
493 break;
494 case BLKIF_PROTOCOL_X86_32:
495 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
496 break;
497 case BLKIF_PROTOCOL_X86_64:
498 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
499 break;
500 default:
501 BUG();
502 }
503 blk_rings->common.req_cons = ++rc; /* before make_response() */
504
505 /* Apply all sanity checks to /private copy/ of request. */
506 barrier();
507
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400508 if (dispatch_rw_block_io(blkif, &req, pending_req))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400509 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400510
511 /* Yield point for this unbounded loop. */
512 cond_resched();
513 }
514
515 return more_to_do;
516}
517
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400518/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400519 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
520 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400521 */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400522static int dispatch_rw_block_io(struct blkif_st *blkif,
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800523 struct blkif_request *req,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400524 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400525{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400526 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400527 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400528 unsigned int nseg;
529 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400530 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400531 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400532 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400533 struct blk_plug plug;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400534
535 switch (req->operation) {
536 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400537 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400538 operation = READ;
539 break;
540 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400541 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400542 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400543 break;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400544 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400545 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400546 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400547 /*
548 * The frontend likes to set this to -1, which vbd_translate
549 * is alergic too.
550 */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400551 req->u.rw.sector_number = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400552 break;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400553 case BLKIF_OP_WRITE_BARRIER:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400554 default:
555 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400556 goto fail_response;
557 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400558 }
559
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400560 /* Check that the number of segments is sane. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400561 nseg = req->nr_segments;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400562 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400563 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400564 pr_debug("xen-blkback: Bad number of segments in request (%d)\n",
565 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400566 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400567 goto fail_response;
568 }
569
570 preq.dev = req->handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500571 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400572 preq.nr_sects = 0;
573
574 pending_req->blkif = blkif;
575 pending_req->id = req->id;
576 pending_req->operation = req->operation;
577 pending_req->status = BLKIF_RSP_OKAY;
578 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400579
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400580 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500581 seg[i].nsec = req->u.rw.seg[i].last_sect -
582 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500583 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
584 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400585 goto fail_response;
586 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400587
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400588 }
589
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400590 if (vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400591 pr_debug("xen-blkback: access denied: %s of [%llu,%llu] on dev=%04x\n",
592 operation == READ ? "read" : "write",
593 preq.sector_number,
594 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400595 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400596 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400597
598 /*
599 * This check _MUST_ be done after vbd_translate as the preq.bdev
600 * is set there.
601 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400602 for (i = 0; i < nseg; i++) {
603 if (((int)preq.sector_number|(int)seg[i].nsec) &
604 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400605 pr_debug("xen-blkback: Misaligned I/O request from domain %d",
606 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400607 goto fail_response;
608 }
609 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400610
611 /*
612 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400613 * set gnttab_set_unmap_op on all of the grant references and perform
614 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400615 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400616 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400617 if (xen_blkbk_map(req, pending_req, seg))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400618 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400619
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400620 /* This corresponding xen_blkif_put is done in __end_block_io_op */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400621 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400622
623 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400624 while ((bio == NULL) ||
625 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500626 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400627 seg[i].nsec << 9,
628 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400629
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400630 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400631 if (unlikely(bio == NULL))
632 goto fail_put_bio;
633
634 bio->bi_bdev = preq.bdev;
635 bio->bi_private = pending_req;
636 bio->bi_end_io = end_block_io_op;
637 bio->bi_sector = preq.sector_number;
638 }
639
640 preq.sector_number += seg[i].nsec;
641 }
642
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400643 /* This will be hit if the operation was a flush. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400644 if (!bio) {
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400645 BUG_ON(operation != WRITE_FLUSH);
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400646 bio = biolist[nbio++] = bio_alloc(GFP_KERNEL, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400647 if (unlikely(bio == NULL))
648 goto fail_put_bio;
649
650 bio->bi_bdev = preq.bdev;
651 bio->bi_private = pending_req;
652 bio->bi_end_io = end_block_io_op;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400653 }
654
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400655 /*
656 * We set it one so that the last submit_bio does not have to call
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400657 * atomic_inc.
658 */
659 atomic_set(&pending_req->pendcnt, nbio);
660
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400661 /* Get a reference count for the disk queue and start sending I/O */
662 blk_start_plug(&plug);
663
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400664 for (i = 0; i < nbio; i++)
665 submit_bio(operation, biolist[i]);
666
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400667 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400668 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400669
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400670 if (operation == READ)
671 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400672 else if (operation == WRITE || operation == WRITE_FLUSH)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400673 blkif->st_wr_sect += preq.nr_sects;
674
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400675 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400676
677 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400678 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400679 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400680 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400681 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
682 free_req(pending_req);
683 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400684 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400685
686 fail_put_bio:
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400687 for (i = 0; i < (nbio-1); i++)
688 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400689 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400690 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400691 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400692}
693
694
695
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400696/*
697 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400698 */
Konrad Rzeszutek Wilk54893772011-04-14 17:21:50 -0400699static void make_response(struct blkif_st *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400700 unsigned short op, int st)
701{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800702 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400703 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800704 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400705 int more_to_do = 0;
706 int notify;
707
708 resp.id = id;
709 resp.operation = op;
710 resp.status = st;
711
712 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
713 /* Place on the response ring for the relevant domain. */
714 switch (blkif->blk_protocol) {
715 case BLKIF_PROTOCOL_NATIVE:
716 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
717 &resp, sizeof(resp));
718 break;
719 case BLKIF_PROTOCOL_X86_32:
720 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
721 &resp, sizeof(resp));
722 break;
723 case BLKIF_PROTOCOL_X86_64:
724 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
725 &resp, sizeof(resp));
726 break;
727 default:
728 BUG();
729 }
730 blk_rings->common.rsp_prod_pvt++;
731 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
732 if (blk_rings->common.rsp_prod_pvt == blk_rings->common.req_cons) {
733 /*
734 * Tail check for pending requests. Allows frontend to avoid
735 * notifications if requests are already in flight (lower
736 * overheads and promotes batching).
737 */
738 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
739
740 } else if (RING_HAS_UNCONSUMED_REQUESTS(&blk_rings->common)) {
741 more_to_do = 1;
742 }
743
744 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
745
746 if (more_to_do)
747 blkif_notify_work(blkif);
748 if (notify)
749 notify_remote_via_irq(blkif->irq);
750}
751
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400752static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400753{
754 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400755 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400756
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800757 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400758 return -ENODEV;
759
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400760 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500761 if (!blkbk) {
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400762 pr_alert("xen-blkback: %s: out of memory!\n", __func__);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500763 return -ENOMEM;
764 }
765
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400766 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400767
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500768 blkbk->pending_reqs = kmalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400769 xen_blkif_reqs, GFP_KERNEL);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400770 blkbk->pending_grant_handles = kzalloc(sizeof(blkbk->pending_grant_handles[0]) *
771 mmap_pages, GFP_KERNEL);
772 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
773 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400774
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400775 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
776 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400777 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400778 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400779 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400780
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500781 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500782 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400783 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500784 if (blkbk->pending_pages[i] == NULL) {
785 rc = -ENOMEM;
786 goto out_of_memory;
787 }
788 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400789 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400790 if (rc)
791 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400792
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500793 memset(blkbk->pending_reqs, 0, sizeof(blkbk->pending_reqs));
794
795 INIT_LIST_HEAD(&blkbk->pending_free);
796 spin_lock_init(&blkbk->pending_free_lock);
797 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400798
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400799 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400800 list_add_tail(&blkbk->pending_reqs[i].free_list,
801 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400802
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400803 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400804 if (rc)
805 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400806
807 return 0;
808
809 out_of_memory:
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400810 pr_alert("xen-blkback: %s: out of memory\n", __func__);
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400811 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500812 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400813 kfree(blkbk->pending_grant_handles);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500814 for (i = 0; i < mmap_pages; i++) {
815 if (blkbk->pending_pages[i])
816 __free_page(blkbk->pending_pages[i]);
817 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400818 kfree(blkbk->pending_pages);
819 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500820 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400821 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400822}
823
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400824module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400825
826MODULE_LICENSE("Dual BSD/GPL");