blob: 0088bf60f3689db6a704c1856c4f94a682d7db44 [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
Jan Beulich8ab52152011-05-17 11:07:05 +0100178 if (likely(req->nr_sects)) {
179 blkif_sector_t end = req->sector_number + req->nr_sects;
180
181 if (unlikely(end < req->sector_number))
182 goto out;
183 if (unlikely(end > vbd_sz(vbd)))
184 goto out;
185 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400186
187 req->dev = vbd->pdevice;
188 req->bdev = vbd->bdev;
189 rc = 0;
190
191 out:
192 return rc;
193}
194
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400195static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400196{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400197 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400198 struct xenbus_transaction xbt;
199 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400200 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400201 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400202
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400203 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400204 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400205 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400206 vbd->size = new_size;
207again:
208 err = xenbus_transaction_start(&xbt);
209 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400210 pr_warn(DRV_PFX "Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400211 return;
212 }
213 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400214 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400215 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400216 pr_warn(DRV_PFX "Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400217 goto abort;
218 }
219 /*
220 * Write the current state; we will use this to synchronize
221 * the front-end. If the current state is "connected" the
222 * front-end will get the new size information online.
223 */
224 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
225 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400226 pr_warn(DRV_PFX "Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400227 goto abort;
228 }
229
230 err = xenbus_transaction_end(xbt, 0);
231 if (err == -EAGAIN)
232 goto again;
233 if (err)
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400234 pr_warn(DRV_PFX "Error ending transaction");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400235 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400236abort:
237 xenbus_transaction_end(xbt, 1);
238}
239
240/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400241 * Notification from the guest OS.
242 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400243static void blkif_notify_work(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400244{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400245 blkif->waiting_reqs = 1;
246 wake_up(&blkif->wq);
247}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400248
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400249irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400250{
251 blkif_notify_work(dev_id);
252 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400253}
254
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400255/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400256 * SCHEDULER FUNCTIONS
257 */
258
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400259static void print_stats(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400260{
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800261 pr_info("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d"
262 " | ds %4d\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400263 current->comm, blkif->st_oo_req,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800264 blkif->st_rd_req, blkif->st_wr_req,
265 blkif->st_f_req, blkif->st_ds_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400266 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
267 blkif->st_rd_req = 0;
268 blkif->st_wr_req = 0;
269 blkif->st_oo_req = 0;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800270 blkif->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400271}
272
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400273int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400274{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400275 struct xen_blkif *blkif = arg;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400276 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400277
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400278 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400279
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400280 while (!kthread_should_stop()) {
281 if (try_to_freeze())
282 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400283 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400284 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400285
286 wait_event_interruptible(
287 blkif->wq,
288 blkif->waiting_reqs || kthread_should_stop());
289 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500290 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400291 !list_empty(&blkbk->pending_free) ||
292 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400293
294 blkif->waiting_reqs = 0;
295 smp_mb(); /* clear flag *before* checking for work */
296
297 if (do_block_io_op(blkif))
298 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400299
300 if (log_stats && time_after(jiffies, blkif->st_print))
301 print_stats(blkif);
302 }
303
304 if (log_stats)
305 print_stats(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400306
307 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400308 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400309
310 return 0;
311}
312
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400313struct seg_buf {
314 unsigned long buf;
315 unsigned int nsec;
316};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400317/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400318 * Unmap the grant references, and also remove the M2P over-rides
319 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400320 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400321static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400322{
323 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
324 unsigned int i, invcount = 0;
325 grant_handle_t handle;
326 int ret;
327
328 for (i = 0; i < req->nr_pages; i++) {
329 handle = pending_handle(req, i);
330 if (handle == BLKBACK_INVALID_HANDLE)
331 continue;
332 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
333 GNTMAP_host_map, handle);
334 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
335 invcount++;
336 }
337
338 ret = HYPERVISOR_grant_table_op(
339 GNTTABOP_unmap_grant_ref, unmap, invcount);
340 BUG_ON(ret);
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400341 /*
342 * Note, we use invcount, so nr->pages, so we can't index
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400343 * using vaddr(req, i).
344 */
345 for (i = 0; i < invcount; i++) {
346 ret = m2p_remove_override(
347 virt_to_page(unmap[i].host_addr), false);
348 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400349 pr_alert(DRV_PFX "Failed to remove M2P override for %lx\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400350 (unsigned long)unmap[i].host_addr);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400351 continue;
352 }
353 }
354}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400355
356static int xen_blkbk_map(struct blkif_request *req,
357 struct pending_req *pending_req,
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400358 struct seg_buf seg[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400359{
360 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
361 int i;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400362 int nseg = req->u.rw.nr_segments;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400363 int ret = 0;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400364
365 /*
366 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400367 * assign map[..] with the PFN of the page in our domain with the
368 * corresponding grant reference for each page.
369 */
370 for (i = 0; i < nseg; i++) {
371 uint32_t flags;
372
373 flags = GNTMAP_host_map;
374 if (pending_req->operation != BLKIF_OP_READ)
375 flags |= GNTMAP_readonly;
376 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400377 req->u.rw.seg[i].gref,
378 pending_req->blkif->domid);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400379 }
380
381 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
382 BUG_ON(ret);
383
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400384 /*
385 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400386 * so that when we access vaddr(pending_req,i) it has the contents of
387 * the page from the other domain.
388 */
389 for (i = 0; i < nseg; i++) {
390 if (unlikely(map[i].status != 0)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400391 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400392 map[i].handle = BLKBACK_INVALID_HANDLE;
393 ret |= 1;
394 }
395
396 pending_handle(pending_req, i) = map[i].handle;
397
398 if (ret)
399 continue;
400
401 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
Stefano Stabellini0930bba2011-09-29 11:57:56 +0100402 blkbk->pending_page(pending_req, i), NULL);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400403 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400404 pr_alert(DRV_PFX "Failed to install M2P override for %lx (ret: %d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400405 (unsigned long)map[i].dev_bus_addr, ret);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400406 /* We could switch over to GNTTABOP_copy */
407 continue;
408 }
409
410 seg[i].buf = map[i].dev_bus_addr |
411 (req->u.rw.seg[i].first_sect << 9);
412 }
413 return ret;
414}
415
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400416static int dispatch_discard_io(struct xen_blkif *blkif,
417 struct blkif_request *req)
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800418{
419 int err = 0;
420 int status = BLKIF_RSP_OKAY;
421 struct block_device *bdev = blkif->vbd.bdev;
422
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400423 blkif->st_ds_req++;
424
425 xen_blkif_get(blkif);
Li Dongyangae18be12011-11-10 15:52:06 +0800426 if (blkif->blk_backend_type == BLKIF_BACKEND_PHY ||
427 blkif->blk_backend_type == BLKIF_BACKEND_FILE) {
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400428 unsigned long secure = (blkif->vbd.discard_secure &&
429 (req->u.discard.flag & BLKIF_DISCARD_SECURE)) ?
430 BLKDEV_DISCARD_SECURE : 0;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800431 err = blkdev_issue_discard(bdev,
432 req->u.discard.sector_number,
433 req->u.discard.nr_sectors,
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400434 GFP_KERNEL, secure);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800435 } else
436 err = -EOPNOTSUPP;
437
438 if (err == -EOPNOTSUPP) {
439 pr_debug(DRV_PFX "discard op failed, not supported\n");
440 status = BLKIF_RSP_EOPNOTSUPP;
441 } else if (err)
442 status = BLKIF_RSP_ERROR;
443
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400444 make_response(blkif, req->u.discard.id, req->operation, status);
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400445 xen_blkif_put(blkif);
446 return err;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800447}
448
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400449static void xen_blk_drain_io(struct xen_blkif *blkif)
450{
451 atomic_set(&blkif->drain, 1);
452 do {
Konrad Rzeszutek Wilk6927d922011-10-17 14:27:48 -0400453 /* The initial value is one, and one refcnt taken at the
454 * start of the xen_blkif_schedule thread. */
455 if (atomic_read(&blkif->refcnt) <= 2)
456 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400457 wait_for_completion_interruptible_timeout(
458 &blkif->drain_complete, HZ);
459
460 if (!atomic_read(&blkif->drain))
461 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400462 } while (!kthread_should_stop());
463 atomic_set(&blkif->drain, 0);
464}
465
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400466/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400467 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400468 */
469
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400470static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400471{
472 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400473 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400474 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400475 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400476 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400477 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400478 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
479 (error == -EOPNOTSUPP)) {
480 pr_debug(DRV_PFX "write barrier op failed, not supported\n");
481 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
482 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400483 } else if (error) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400484 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400485 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400486 pending_req->status = BLKIF_RSP_ERROR;
487 }
488
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400489 /*
490 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400491 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400492 * the proper response on the ring.
493 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400494 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400495 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400496 make_response(pending_req->blkif, pending_req->id,
497 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400498 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400499 if (atomic_read(&pending_req->blkif->refcnt) <= 2) {
500 if (atomic_read(&pending_req->blkif->drain))
501 complete(&pending_req->blkif->drain_complete);
502 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400503 free_req(pending_req);
504 }
505}
506
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400507/*
508 * bio callback.
509 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800510static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400511{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400512 __end_block_io_op(bio->bi_private, error);
513 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400514}
515
516
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400517
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400518/*
519 * Function to copy the from the ring buffer the 'struct blkif_request'
520 * (which has the sectors we want, number of them, grant references, etc),
521 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400522 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700523static int
524__do_block_io_op(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400525{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800526 union blkif_back_rings *blk_rings = &blkif->blk_rings;
527 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400528 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400529 RING_IDX rc, rp;
530 int more_to_do = 0;
531
532 rc = blk_rings->common.req_cons;
533 rp = blk_rings->common.sring->req_prod;
534 rmb(); /* Ensure we see queued requests up to 'rp'. */
535
536 while (rc != rp) {
537
538 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
539 break;
540
Keir Fraser8270b452009-03-06 08:29:15 +0000541 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400542 more_to_do = 1;
543 break;
544 }
545
Keir Fraser8270b452009-03-06 08:29:15 +0000546 pending_req = alloc_req();
547 if (NULL == pending_req) {
548 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400549 more_to_do = 1;
550 break;
551 }
552
553 switch (blkif->blk_protocol) {
554 case BLKIF_PROTOCOL_NATIVE:
555 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
556 break;
557 case BLKIF_PROTOCOL_X86_32:
558 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
559 break;
560 case BLKIF_PROTOCOL_X86_64:
561 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
562 break;
563 default:
564 BUG();
565 }
566 blk_rings->common.req_cons = ++rc; /* before make_response() */
567
568 /* Apply all sanity checks to /private copy/ of request. */
569 barrier();
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400570 if (unlikely(req.operation == BLKIF_OP_DISCARD)) {
571 free_req(pending_req);
572 if (dispatch_discard_io(blkif, &req))
573 break;
574 } else if (dispatch_rw_block_io(blkif, &req, pending_req))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400575 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400576
577 /* Yield point for this unbounded loop. */
578 cond_resched();
579 }
580
581 return more_to_do;
582}
583
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700584static int
585do_block_io_op(struct xen_blkif *blkif)
586{
587 union blkif_back_rings *blk_rings = &blkif->blk_rings;
588 int more_to_do;
589
590 do {
591 more_to_do = __do_block_io_op(blkif);
592 if (more_to_do)
593 break;
594
595 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
596 } while (more_to_do);
597
598 return more_to_do;
599}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400600/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400601 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
602 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400603 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400604static int dispatch_rw_block_io(struct xen_blkif *blkif,
605 struct blkif_request *req,
606 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400607{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400608 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400609 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400610 unsigned int nseg;
611 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400612 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400613 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400614 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400615 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400616 bool drain = false;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400617
618 switch (req->operation) {
619 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400620 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400621 operation = READ;
622 break;
623 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400624 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400625 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400626 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400627 case BLKIF_OP_WRITE_BARRIER:
628 drain = true;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400629 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400630 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400631 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400632 break;
633 default:
634 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400635 goto fail_response;
636 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400637 }
638
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400639 /* Check that the number of segments is sane. */
640 nseg = req->u.rw.nr_segments;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400641
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400642 if (unlikely(nseg == 0 && operation != WRITE_FLUSH) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400643 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400644 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400645 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400646 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400647 goto fail_response;
648 }
649
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400650 preq.dev = req->u.rw.handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500651 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400652 preq.nr_sects = 0;
653
654 pending_req->blkif = blkif;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400655 pending_req->id = req->u.rw.id;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400656 pending_req->operation = req->operation;
657 pending_req->status = BLKIF_RSP_OKAY;
658 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400659
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400660 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500661 seg[i].nsec = req->u.rw.seg[i].last_sect -
662 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500663 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
664 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400665 goto fail_response;
666 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400667
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400668 }
669
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400670 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400671 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400672 operation == READ ? "read" : "write",
673 preq.sector_number,
674 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400675 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400676 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400677
678 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400679 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400680 * is set there.
681 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400682 for (i = 0; i < nseg; i++) {
683 if (((int)preq.sector_number|(int)seg[i].nsec) &
684 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400685 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400686 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400687 goto fail_response;
688 }
689 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400690
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400691 /* Wait on all outstanding I/O's and once that has been completed
692 * issue the WRITE_FLUSH.
693 */
694 if (drain)
695 xen_blk_drain_io(pending_req->blkif);
696
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400697 /*
698 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400699 * set gnttab_set_unmap_op on all of the grant references and perform
700 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400701 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400702 */
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400703 if (xen_blkbk_map(req, pending_req, seg))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400704 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400705
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800706 /*
707 * This corresponding xen_blkif_put is done in __end_block_io_op, or
708 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
709 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400710 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400711
712 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400713 while ((bio == NULL) ||
714 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500715 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400716 seg[i].nsec << 9,
717 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400718
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400719 bio = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400720 if (unlikely(bio == NULL))
721 goto fail_put_bio;
722
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400723 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400724 bio->bi_bdev = preq.bdev;
725 bio->bi_private = pending_req;
726 bio->bi_end_io = end_block_io_op;
727 bio->bi_sector = preq.sector_number;
728 }
729
730 preq.sector_number += seg[i].nsec;
731 }
732
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800733 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400734 if (!bio) {
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400735 BUG_ON(operation != WRITE_FLUSH);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -0400736
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400737 bio = bio_alloc(GFP_KERNEL, 0);
738 if (unlikely(bio == NULL))
739 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400740
Konrad Rzeszutek Wilk42146352011-10-12 17:26:47 -0400741 biolist[nbio++] = bio;
742 bio->bi_bdev = preq.bdev;
743 bio->bi_private = pending_req;
744 bio->bi_end_io = end_block_io_op;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400745 }
746
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400747 /*
748 * We set it one so that the last submit_bio does not have to call
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400749 * atomic_inc.
750 */
751 atomic_set(&pending_req->pendcnt, nbio);
752
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400753 /* Get a reference count for the disk queue and start sending I/O */
754 blk_start_plug(&plug);
755
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400756 for (i = 0; i < nbio; i++)
757 submit_bio(operation, biolist[i]);
758
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400759 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400760 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400761
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400762 if (operation == READ)
763 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk5c62cb42011-10-10 12:33:21 -0400764 else if (operation & WRITE)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400765 blkif->st_wr_sect += preq.nr_sects;
766
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400767 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400768
769 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400770 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400771 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400772 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400773 make_response(blkif, req->u.rw.id, req->operation, BLKIF_RSP_ERROR);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400774 free_req(pending_req);
775 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400776 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400777
778 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400779 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400780 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400781 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400782 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400783 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400784}
785
786
787
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400788/*
789 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400790 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400791static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400792 unsigned short op, int st)
793{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800794 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400795 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800796 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400797 int notify;
798
799 resp.id = id;
800 resp.operation = op;
801 resp.status = st;
802
803 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
804 /* Place on the response ring for the relevant domain. */
805 switch (blkif->blk_protocol) {
806 case BLKIF_PROTOCOL_NATIVE:
807 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
808 &resp, sizeof(resp));
809 break;
810 case BLKIF_PROTOCOL_X86_32:
811 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
812 &resp, sizeof(resp));
813 break;
814 case BLKIF_PROTOCOL_X86_64:
815 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
816 &resp, sizeof(resp));
817 break;
818 default:
819 BUG();
820 }
821 blk_rings->common.rsp_prod_pvt++;
822 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400823 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400824 if (notify)
825 notify_remote_via_irq(blkif->irq);
826}
827
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400828static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400829{
830 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400831 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400832
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800833 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400834 return -ENODEV;
835
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400836 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500837 if (!blkbk) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400838 pr_alert(DRV_PFX "%s: out of memory!\n", __func__);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500839 return -ENOMEM;
840 }
841
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400842 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400843
Jan Beulich8e6dc6f2011-09-16 08:38:09 +0100844 blkbk->pending_reqs = kzalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400845 xen_blkif_reqs, GFP_KERNEL);
Jan Beulich8e6dc6f2011-09-16 08:38:09 +0100846 blkbk->pending_grant_handles = kmalloc(sizeof(blkbk->pending_grant_handles[0]) *
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400847 mmap_pages, GFP_KERNEL);
848 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
849 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400850
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400851 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
852 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400853 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400854 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400855 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400856
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500857 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500858 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400859 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500860 if (blkbk->pending_pages[i] == NULL) {
861 rc = -ENOMEM;
862 goto out_of_memory;
863 }
864 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400865 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400866 if (rc)
867 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400868
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500869 INIT_LIST_HEAD(&blkbk->pending_free);
870 spin_lock_init(&blkbk->pending_free_lock);
871 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400872
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400873 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400874 list_add_tail(&blkbk->pending_reqs[i].free_list,
875 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400876
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400877 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400878 if (rc)
879 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400880
881 return 0;
882
883 out_of_memory:
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400884 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400885 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500886 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400887 kfree(blkbk->pending_grant_handles);
Dan Carpenter9b83c772011-05-27 09:27:16 +0300888 if (blkbk->pending_pages) {
889 for (i = 0; i < mmap_pages; i++) {
890 if (blkbk->pending_pages[i])
891 __free_page(blkbk->pending_pages[i]);
892 }
893 kfree(blkbk->pending_pages);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500894 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400895 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500896 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400897 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400898}
899
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400900module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400901
902MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +0200903MODULE_ALIAS("xen-backend:vbd");