blob: c15c559e8662a7a7f34cbd999c58e9465f4efefe [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>
Li Dongyangb3cb0d62011-09-01 18:39:10 +080042#include <linux/loop.h>
43#include <linux/falloc.h>
44#include <linux/fs.h>
Jeremy Fitzhardingeafd91d02009-09-15 14:12:37 -070045
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -080046#include <xen/events.h>
47#include <xen/page.h>
48#include <asm/xen/hypervisor.h>
49#include <asm/xen/hypercall.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040050#include "common.h"
51
52/*
53 * These are rather arbitrary. They are fairly large because adjacent requests
54 * pulled from a communication ring are quite likely to end up being part of
55 * the same scatter/gather request at the disc.
56 *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040057 * ** TRY INCREASING 'xen_blkif_reqs' IF WRITE SPEEDS SEEM TOO LOW **
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040058 *
59 * This will increase the chances of being able to write whole tracks.
60 * 64 should be enough to keep us competitive with Linux.
61 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040062static int xen_blkif_reqs = 64;
63module_param_named(reqs, xen_blkif_reqs, int, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040064MODULE_PARM_DESC(reqs, "Number of blkback requests to allocate");
65
66/* Run-time switchable: /sys/module/blkback/parameters/ */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040067static unsigned int log_stats;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040068module_param(log_stats, int, 0644);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040069
70/*
71 * Each outstanding request that we've passed to the lower device layers has a
72 * 'pending_req' allocated to it. Each buffer_head that completes decrements
73 * the pendcnt towards zero. When it hits zero, the specified domain has a
74 * response queued for it, with the saved 'id' passed back.
75 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040076struct pending_req {
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040077 struct xen_blkif *blkif;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040078 u64 id;
79 int nr_pages;
80 atomic_t pendcnt;
81 unsigned short operation;
82 int status;
83 struct list_head free_list;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040084};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040085
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040086#define BLKBACK_INVALID_HANDLE (~0)
87
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050088struct xen_blkbk {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -040089 struct pending_req *pending_reqs;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040090 /* List of all 'pending_req' available */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050091 struct list_head pending_free;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040092 /* And its spinlock. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050093 spinlock_t pending_free_lock;
94 wait_queue_head_t pending_free_wq;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040095 /* The list of all pages that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050096 struct page **pending_pages;
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -040097 /* And the grant handles that are available. */
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -050098 grant_handle_t *pending_grant_handles;
99};
100
101static struct xen_blkbk *blkbk;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400102
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400103/*
104 * Little helpful macro to figure out the index and virtual address of the
105 * pending_pages[..]. For each 'pending_req' we have have up to
106 * BLKIF_MAX_SEGMENTS_PER_REQUEST (11) pages. The seg would be from 0 through
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400107 * 10 and would index in the pending_pages[..].
108 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400109static inline int vaddr_pagenr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400110{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400111 return (req - blkbk->pending_reqs) *
112 BLKIF_MAX_SEGMENTS_PER_REQUEST + seg;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400113}
114
Jan Beulichefe08a32010-02-05 14:19:33 -0500115#define pending_page(req, seg) pending_pages[vaddr_pagenr(req, seg)]
116
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400117static inline unsigned long vaddr(struct pending_req *req, int seg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400118{
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500119 unsigned long pfn = page_to_pfn(blkbk->pending_page(req, seg));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400120 return (unsigned long)pfn_to_kaddr(pfn);
121}
122
123#define pending_handle(_req, _seg) \
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500124 (blkbk->pending_grant_handles[vaddr_pagenr(_req, _seg)])
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400125
126
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400127static int do_block_io_op(struct xen_blkif *blkif);
128static int dispatch_rw_block_io(struct xen_blkif *blkif,
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400129 struct blkif_request *req,
130 struct pending_req *pending_req);
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400131static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400132 unsigned short op, int st);
133
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400134/*
135 * Retrieve from the 'pending_reqs' a free pending_req structure to be used.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400136 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400137static struct pending_req *alloc_req(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400138{
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400139 struct pending_req *req = NULL;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400140 unsigned long flags;
141
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500142 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
143 if (!list_empty(&blkbk->pending_free)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400144 req = list_entry(blkbk->pending_free.next, struct pending_req,
145 free_list);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400146 list_del(&req->free_list);
147 }
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500148 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400149 return req;
150}
151
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400152/*
153 * Return the 'pending_req' structure back to the freepool. We also
154 * wake up the thread if it was waiting for a free page.
155 */
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400156static void free_req(struct pending_req *req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400157{
158 unsigned long flags;
159 int was_empty;
160
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500161 spin_lock_irqsave(&blkbk->pending_free_lock, flags);
162 was_empty = list_empty(&blkbk->pending_free);
163 list_add(&req->free_list, &blkbk->pending_free);
164 spin_unlock_irqrestore(&blkbk->pending_free_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400165 if (was_empty)
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500166 wake_up(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400167}
168
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400169/*
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400170 * Routines for managing virtual block devices (vbds).
171 */
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400172static int xen_vbd_translate(struct phys_req *req, struct xen_blkif *blkif,
173 int operation)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400174{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400175 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400176 int rc = -EACCES;
177
178 if ((operation != READ) && vbd->readonly)
179 goto out;
180
Jan Beulich8ab52152011-05-17 11:07:05 +0100181 if (likely(req->nr_sects)) {
182 blkif_sector_t end = req->sector_number + req->nr_sects;
183
184 if (unlikely(end < req->sector_number))
185 goto out;
186 if (unlikely(end > vbd_sz(vbd)))
187 goto out;
188 }
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400189
190 req->dev = vbd->pdevice;
191 req->bdev = vbd->bdev;
192 rc = 0;
193
194 out:
195 return rc;
196}
197
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400198static void xen_vbd_resize(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400199{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400200 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400201 struct xenbus_transaction xbt;
202 int err;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400203 struct xenbus_device *dev = xen_blkbk_xenbus(blkif->be);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400204 unsigned long long new_size = vbd_sz(vbd);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400205
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400206 pr_info(DRV_PFX "VBD Resize: Domid: %d, Device: (%d, %d)\n",
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400207 blkif->domid, MAJOR(vbd->pdevice), MINOR(vbd->pdevice));
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400208 pr_info(DRV_PFX "VBD Resize: new size %llu\n", new_size);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400209 vbd->size = new_size;
210again:
211 err = xenbus_transaction_start(&xbt);
212 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400213 pr_warn(DRV_PFX "Error starting transaction");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400214 return;
215 }
216 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400217 (unsigned long long)vbd_sz(vbd));
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400218 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400219 pr_warn(DRV_PFX "Error writing new size");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400220 goto abort;
221 }
222 /*
223 * Write the current state; we will use this to synchronize
224 * the front-end. If the current state is "connected" the
225 * front-end will get the new size information online.
226 */
227 err = xenbus_printf(xbt, dev->nodename, "state", "%d", dev->state);
228 if (err) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400229 pr_warn(DRV_PFX "Error writing the state");
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400230 goto abort;
231 }
232
233 err = xenbus_transaction_end(xbt, 0);
234 if (err == -EAGAIN)
235 goto again;
236 if (err)
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400237 pr_warn(DRV_PFX "Error ending transaction");
Laszlo Ersek496b3182011-05-13 09:45:40 -0400238 return;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400239abort:
240 xenbus_transaction_end(xbt, 1);
241}
242
243/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400244 * Notification from the guest OS.
245 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400246static void blkif_notify_work(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400247{
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400248 blkif->waiting_reqs = 1;
249 wake_up(&blkif->wq);
250}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400251
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400252irqreturn_t xen_blkif_be_int(int irq, void *dev_id)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400253{
254 blkif_notify_work(dev_id);
255 return IRQ_HANDLED;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400256}
257
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400258/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400259 * SCHEDULER FUNCTIONS
260 */
261
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400262static void print_stats(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400263{
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800264 pr_info("xen-blkback (%s): oo %3d | rd %4d | wr %4d | f %4d"
265 " | ds %4d\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400266 current->comm, blkif->st_oo_req,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800267 blkif->st_rd_req, blkif->st_wr_req,
268 blkif->st_f_req, blkif->st_ds_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400269 blkif->st_print = jiffies + msecs_to_jiffies(10 * 1000);
270 blkif->st_rd_req = 0;
271 blkif->st_wr_req = 0;
272 blkif->st_oo_req = 0;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800273 blkif->st_ds_req = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400274}
275
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400276int xen_blkif_schedule(void *arg)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400277{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400278 struct xen_blkif *blkif = arg;
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400279 struct xen_vbd *vbd = &blkif->vbd;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400280
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400281 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400282
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400283 while (!kthread_should_stop()) {
284 if (try_to_freeze())
285 continue;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400286 if (unlikely(vbd->size != vbd_sz(vbd)))
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400287 xen_vbd_resize(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400288
289 wait_event_interruptible(
290 blkif->wq,
291 blkif->waiting_reqs || kthread_should_stop());
292 wait_event_interruptible(
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500293 blkbk->pending_free_wq,
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400294 !list_empty(&blkbk->pending_free) ||
295 kthread_should_stop());
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400296
297 blkif->waiting_reqs = 0;
298 smp_mb(); /* clear flag *before* checking for work */
299
300 if (do_block_io_op(blkif))
301 blkif->waiting_reqs = 1;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400302
303 if (log_stats && time_after(jiffies, blkif->st_print))
304 print_stats(blkif);
305 }
306
307 if (log_stats)
308 print_stats(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400309
310 blkif->xenblkd = NULL;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400311 xen_blkif_put(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400312
313 return 0;
314}
315
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400316struct seg_buf {
317 unsigned long buf;
318 unsigned int nsec;
319};
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400320/*
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400321 * Unmap the grant references, and also remove the M2P over-rides
322 * used in the 'pending_req'.
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400323 */
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400324static void xen_blkbk_unmap(struct pending_req *req)
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400325{
326 struct gnttab_unmap_grant_ref unmap[BLKIF_MAX_SEGMENTS_PER_REQUEST];
327 unsigned int i, invcount = 0;
328 grant_handle_t handle;
329 int ret;
330
331 for (i = 0; i < req->nr_pages; i++) {
332 handle = pending_handle(req, i);
333 if (handle == BLKBACK_INVALID_HANDLE)
334 continue;
335 gnttab_set_unmap_op(&unmap[invcount], vaddr(req, i),
336 GNTMAP_host_map, handle);
337 pending_handle(req, i) = BLKBACK_INVALID_HANDLE;
338 invcount++;
339 }
340
341 ret = HYPERVISOR_grant_table_op(
342 GNTTABOP_unmap_grant_ref, unmap, invcount);
343 BUG_ON(ret);
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400344 /*
345 * Note, we use invcount, so nr->pages, so we can't index
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400346 * using vaddr(req, i).
347 */
348 for (i = 0; i < invcount; i++) {
349 ret = m2p_remove_override(
350 virt_to_page(unmap[i].host_addr), false);
351 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400352 pr_alert(DRV_PFX "Failed to remove M2P override for %lx\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400353 (unsigned long)unmap[i].host_addr);
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400354 continue;
355 }
356 }
357}
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400358
359static int xen_blkbk_map(struct blkif_request *req,
360 struct pending_req *pending_req,
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400361 struct seg_buf seg[])
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400362{
363 struct gnttab_map_grant_ref map[BLKIF_MAX_SEGMENTS_PER_REQUEST];
364 int i;
365 int nseg = req->nr_segments;
366 int ret = 0;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400367
368 /*
369 * Fill out preq.nr_sects with proper amount of sectors, and setup
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400370 * assign map[..] with the PFN of the page in our domain with the
371 * corresponding grant reference for each page.
372 */
373 for (i = 0; i < nseg; i++) {
374 uint32_t flags;
375
376 flags = GNTMAP_host_map;
377 if (pending_req->operation != BLKIF_OP_READ)
378 flags |= GNTMAP_readonly;
379 gnttab_set_map_op(&map[i], vaddr(pending_req, i), flags,
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400380 req->u.rw.seg[i].gref,
381 pending_req->blkif->domid);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400382 }
383
384 ret = HYPERVISOR_grant_table_op(GNTTABOP_map_grant_ref, map, nseg);
385 BUG_ON(ret);
386
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400387 /*
388 * Now swizzle the MFN in our domain with the MFN from the other domain
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400389 * so that when we access vaddr(pending_req,i) it has the contents of
390 * the page from the other domain.
391 */
392 for (i = 0; i < nseg; i++) {
393 if (unlikely(map[i].status != 0)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400394 pr_debug(DRV_PFX "invalid buffer -- could not remap it\n");
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400395 map[i].handle = BLKBACK_INVALID_HANDLE;
396 ret |= 1;
397 }
398
399 pending_handle(pending_req, i) = map[i].handle;
400
401 if (ret)
402 continue;
403
404 ret = m2p_add_override(PFN_DOWN(map[i].dev_bus_addr),
405 blkbk->pending_page(pending_req, i), false);
406 if (ret) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400407 pr_alert(DRV_PFX "Failed to install M2P override for %lx (ret: %d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400408 (unsigned long)map[i].dev_bus_addr, ret);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400409 /* We could switch over to GNTTABOP_copy */
410 continue;
411 }
412
413 seg[i].buf = map[i].dev_bus_addr |
414 (req->u.rw.seg[i].first_sect << 9);
415 }
416 return ret;
417}
418
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800419static void xen_blk_discard(struct xen_blkif *blkif, struct blkif_request *req)
420{
421 int err = 0;
422 int status = BLKIF_RSP_OKAY;
423 struct block_device *bdev = blkif->vbd.bdev;
424
425 if (blkif->blk_backend_type == BLKIF_BACKEND_PHY)
426 /* just forward the discard request */
427 err = blkdev_issue_discard(bdev,
428 req->u.discard.sector_number,
429 req->u.discard.nr_sectors,
430 GFP_KERNEL, 0);
431 else if (blkif->blk_backend_type == BLKIF_BACKEND_FILE) {
432 /* punch a hole in the backing file */
433 struct loop_device *lo = bdev->bd_disk->private_data;
434 struct file *file = lo->lo_backing_file;
435
436 if (file->f_op->fallocate)
437 err = file->f_op->fallocate(file,
438 FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,
439 req->u.discard.sector_number << 9,
440 req->u.discard.nr_sectors << 9);
441 else
442 err = -EOPNOTSUPP;
443 } else
444 err = -EOPNOTSUPP;
445
446 if (err == -EOPNOTSUPP) {
447 pr_debug(DRV_PFX "discard op failed, not supported\n");
448 status = BLKIF_RSP_EOPNOTSUPP;
449 } else if (err)
450 status = BLKIF_RSP_ERROR;
451
452 make_response(blkif, req->id, req->operation, status);
453}
454
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400455static void xen_blk_drain_io(struct xen_blkif *blkif)
456{
457 atomic_set(&blkif->drain, 1);
458 do {
459 wait_for_completion_interruptible_timeout(
460 &blkif->drain_complete, HZ);
461
462 if (!atomic_read(&blkif->drain))
463 break;
464 /* The initial value is one, and one refcnt taken at the
465 * start of the xen_blkif_schedule thread. */
466 if (atomic_read(&blkif->refcnt) <= 2)
467 break;
468 } while (!kthread_should_stop());
469 atomic_set(&blkif->drain, 0);
470}
471
Konrad Rzeszutek Wilkb0aef172011-04-15 10:58:05 -0400472/*
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400473 * Completion callback on the bio's. Called as bh->b_end_io()
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400474 */
475
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400476static void __end_block_io_op(struct pending_req *pending_req, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400477{
478 /* An error fails the entire request. */
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400479 if ((pending_req->operation == BLKIF_OP_FLUSH_DISKCACHE) &&
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400480 (error == -EOPNOTSUPP)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400481 pr_debug(DRV_PFX "flush diskcache op failed, not supported\n");
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400482 xen_blkbk_flush_diskcache(XBT_NIL, pending_req->blkif->be, 0);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400483 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400484 } else if ((pending_req->operation == BLKIF_OP_WRITE_BARRIER) &&
485 (error == -EOPNOTSUPP)) {
486 pr_debug(DRV_PFX "write barrier op failed, not supported\n");
487 xen_blkbk_barrier(XBT_NIL, pending_req->blkif->be, 0);
488 pending_req->status = BLKIF_RSP_EOPNOTSUPP;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400489 } else if (error) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400490 pr_debug(DRV_PFX "Buffer not up-to-date at end of operation,"
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400491 " error=%d\n", error);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400492 pending_req->status = BLKIF_RSP_ERROR;
493 }
494
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400495 /*
496 * If all of the bio's have completed it is time to unmap
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400497 * the grant references associated with 'request' and provide
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400498 * the proper response on the ring.
499 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400500 if (atomic_dec_and_test(&pending_req->pendcnt)) {
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400501 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400502 make_response(pending_req->blkif, pending_req->id,
503 pending_req->operation, pending_req->status);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400504 xen_blkif_put(pending_req->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400505 free_req(pending_req);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400506 if (atomic_read(&pending_req->blkif->refcnt) <= 2) {
507 if (atomic_read(&pending_req->blkif->drain))
508 complete(&pending_req->blkif->drain_complete);
509 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400510 }
511}
512
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400513/*
514 * bio callback.
515 */
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800516static void end_block_io_op(struct bio *bio, int error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400517{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400518 __end_block_io_op(bio->bi_private, error);
519 bio_put(bio);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400520}
521
522
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400523
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400524/*
525 * Function to copy the from the ring buffer the 'struct blkif_request'
526 * (which has the sectors we want, number of them, grant references, etc),
527 * and transmute it to the block API to hand it over to the proper block disk.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400528 */
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700529static int
530__do_block_io_op(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400531{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800532 union blkif_back_rings *blk_rings = &blkif->blk_rings;
533 struct blkif_request req;
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400534 struct pending_req *pending_req;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400535 RING_IDX rc, rp;
536 int more_to_do = 0;
537
538 rc = blk_rings->common.req_cons;
539 rp = blk_rings->common.sring->req_prod;
540 rmb(); /* Ensure we see queued requests up to 'rp'. */
541
542 while (rc != rp) {
543
544 if (RING_REQUEST_CONS_OVERFLOW(&blk_rings->common, rc))
545 break;
546
Keir Fraser8270b452009-03-06 08:29:15 +0000547 if (kthread_should_stop()) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400548 more_to_do = 1;
549 break;
550 }
551
Keir Fraser8270b452009-03-06 08:29:15 +0000552 pending_req = alloc_req();
553 if (NULL == pending_req) {
554 blkif->st_oo_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400555 more_to_do = 1;
556 break;
557 }
558
559 switch (blkif->blk_protocol) {
560 case BLKIF_PROTOCOL_NATIVE:
561 memcpy(&req, RING_GET_REQUEST(&blk_rings->native, rc), sizeof(req));
562 break;
563 case BLKIF_PROTOCOL_X86_32:
564 blkif_get_x86_32_req(&req, RING_GET_REQUEST(&blk_rings->x86_32, rc));
565 break;
566 case BLKIF_PROTOCOL_X86_64:
567 blkif_get_x86_64_req(&req, RING_GET_REQUEST(&blk_rings->x86_64, rc));
568 break;
569 default:
570 BUG();
571 }
572 blk_rings->common.req_cons = ++rc; /* before make_response() */
573
574 /* Apply all sanity checks to /private copy/ of request. */
575 barrier();
576
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400577 if (dispatch_rw_block_io(blkif, &req, pending_req))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400578 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400579
580 /* Yield point for this unbounded loop. */
581 cond_resched();
582 }
583
584 return more_to_do;
585}
586
Daniel Stoddenb4726a92011-05-28 13:21:10 -0700587static int
588do_block_io_op(struct xen_blkif *blkif)
589{
590 union blkif_back_rings *blk_rings = &blkif->blk_rings;
591 int more_to_do;
592
593 do {
594 more_to_do = __do_block_io_op(blkif);
595 if (more_to_do)
596 break;
597
598 RING_FINAL_CHECK_FOR_REQUESTS(&blk_rings->common, more_to_do);
599 } while (more_to_do);
600
601 return more_to_do;
602}
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400603/*
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400604 * Transmutation of the 'struct blkif_request' to a proper 'struct bio'
605 * and call the 'submit_bio' to pass it to the underlying storage.
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400606 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400607static int dispatch_rw_block_io(struct xen_blkif *blkif,
608 struct blkif_request *req,
609 struct pending_req *pending_req)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400610{
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400611 struct phys_req preq;
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400612 struct seg_buf seg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400613 unsigned int nseg;
614 struct bio *bio = NULL;
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400615 struct bio *biolist[BLKIF_MAX_SEGMENTS_PER_REQUEST];
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400616 int i, nbio = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400617 int operation;
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400618 struct blk_plug plug;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400619 bool drain = false;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400620
621 switch (req->operation) {
622 case BLKIF_OP_READ:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400623 blkif->st_rd_req++;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400624 operation = READ;
625 break;
626 case BLKIF_OP_WRITE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400627 blkif->st_wr_req++;
Konrad Rzeszutek Wilk013c3ca2011-04-26 16:24:18 -0400628 operation = WRITE_ODIRECT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400629 break;
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400630 case BLKIF_OP_WRITE_BARRIER:
631 drain = true;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400632 case BLKIF_OP_FLUSH_DISKCACHE:
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400633 blkif->st_f_req++;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400634 operation = WRITE_FLUSH;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400635 break;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800636 case BLKIF_OP_DISCARD:
637 blkif->st_ds_req++;
638 operation = REQ_DISCARD;
639 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400640 default:
641 operation = 0; /* make gcc happy */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400642 goto fail_response;
643 break;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400644 }
645
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400646 /* Check that the number of segments is sane. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400647 nseg = req->nr_segments;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800648 if (unlikely(nseg == 0 && operation != WRITE_FLUSH &&
649 operation != REQ_DISCARD) ||
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400650 unlikely(nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400651 pr_debug(DRV_PFX "Bad number of segments in request (%d)\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400652 nseg);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400653 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400654 goto fail_response;
655 }
656
657 preq.dev = req->handle;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500658 preq.sector_number = req->u.rw.sector_number;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400659 preq.nr_sects = 0;
660
661 pending_req->blkif = blkif;
662 pending_req->id = req->id;
663 pending_req->operation = req->operation;
664 pending_req->status = BLKIF_RSP_OKAY;
665 pending_req->nr_pages = nseg;
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400666
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400667 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500668 seg[i].nsec = req->u.rw.seg[i].last_sect -
669 req->u.rw.seg[i].first_sect + 1;
Konrad Rzeszutek Wilkc35950b2011-03-01 16:22:28 -0500670 if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
671 (req->u.rw.seg[i].last_sect < req->u.rw.seg[i].first_sect))
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400672 goto fail_response;
673 preq.nr_sects += seg[i].nsec;
Konrad Rzeszutek Wilk976222e2011-04-15 11:38:29 -0400674
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400675 }
676
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400677 if (xen_vbd_translate(&preq, blkif, operation) != 0) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400678 pr_debug(DRV_PFX "access denied: %s of [%llu,%llu] on dev=%04x\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400679 operation == READ ? "read" : "write",
680 preq.sector_number,
681 preq.sector_number + preq.nr_sects, preq.dev);
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400682 goto fail_response;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400683 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400684
685 /*
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400686 * This check _MUST_ be done after xen_vbd_translate as the preq.bdev
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400687 * is set there.
688 */
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400689 for (i = 0; i < nseg; i++) {
690 if (((int)preq.sector_number|(int)seg[i].nsec) &
691 ((bdev_logical_block_size(preq.bdev) >> 9) - 1)) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400692 pr_debug(DRV_PFX "Misaligned I/O request from domain %d",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400693 blkif->domid);
Konrad Rzeszutek Wilke9350492011-04-18 11:34:55 -0400694 goto fail_response;
695 }
696 }
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400697
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400698 /* Wait on all outstanding I/O's and once that has been completed
699 * issue the WRITE_FLUSH.
700 */
701 if (drain)
702 xen_blk_drain_io(pending_req->blkif);
703
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400704 /*
705 * If we have failed at this point, we need to undo the M2P override,
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400706 * set gnttab_set_unmap_op on all of the grant references and perform
707 * the hypercall to unmap the grants - that is all done in
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400708 * xen_blkbk_unmap.
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400709 */
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800710 if (operation != BLKIF_OP_DISCARD &&
711 xen_blkbk_map(req, pending_req, seg))
Konrad Rzeszutek Wilk1a95fe62011-04-15 11:35:13 -0400712 goto fail_flush;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400713
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800714 /*
715 * This corresponding xen_blkif_put is done in __end_block_io_op, or
716 * below (in "!bio") if we are handling a BLKIF_OP_DISCARD.
717 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400718 xen_blkif_get(blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400719
720 for (i = 0; i < nseg; i++) {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400721 while ((bio == NULL) ||
722 (bio_add_page(bio,
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500723 blkbk->pending_page(pending_req, i),
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400724 seg[i].nsec << 9,
725 seg[i].buf & ~PAGE_MASK) == 0)) {
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400726
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400727 bio = bio_alloc(GFP_KERNEL, nseg-i);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400728 if (unlikely(bio == NULL))
729 goto fail_put_bio;
730
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400731 biolist[nbio++] = bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400732 bio->bi_bdev = preq.bdev;
733 bio->bi_private = pending_req;
734 bio->bi_end_io = end_block_io_op;
735 bio->bi_sector = preq.sector_number;
736 }
737
738 preq.sector_number += seg[i].nsec;
739 }
740
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800741 /* This will be hit if the operation was a flush or discard. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400742 if (!bio) {
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800743 BUG_ON(operation != WRITE_FLUSH && operation != REQ_DISCARD);
Konrad Rzeszutek Wilkb0f80122011-05-12 16:23:06 -0400744
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800745 if (operation == WRITE_FLUSH) {
746 bio = bio_alloc(GFP_KERNEL, 0);
747 if (unlikely(bio == NULL))
748 goto fail_put_bio;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400749
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800750 biolist[nbio++] = bio;
751 bio->bi_bdev = preq.bdev;
752 bio->bi_private = pending_req;
753 bio->bi_end_io = end_block_io_op;
754 } else if (operation == REQ_DISCARD) {
755 xen_blk_discard(blkif, req);
756 xen_blkif_put(blkif);
757 free_req(pending_req);
758 return 0;
759 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400760 }
761
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400762 /*
763 * We set it one so that the last submit_bio does not have to call
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400764 * atomic_inc.
765 */
766 atomic_set(&pending_req->pendcnt, nbio);
767
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400768 /* Get a reference count for the disk queue and start sending I/O */
769 blk_start_plug(&plug);
770
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400771 for (i = 0; i < nbio; i++)
772 submit_bio(operation, biolist[i]);
773
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400774 /* Let the I/Os go.. */
Konrad Rzeszutek Wilk3d68b392011-05-05 13:42:10 -0400775 blk_finish_plug(&plug);
Konrad Rzeszutek Wilka19be5f2011-04-27 12:40:11 -0400776
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400777 if (operation == READ)
778 blkif->st_rd_sect += preq.nr_sects;
Konrad Rzeszutek Wilk5c62cb42011-10-10 12:33:21 -0400779 else if (operation & WRITE)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400780 blkif->st_wr_sect += preq.nr_sects;
781
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400782 return 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400783
784 fail_flush:
Konrad Rzeszutek Wilk9f3aedf2011-04-15 11:50:34 -0400785 xen_blkbk_unmap(pending_req);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400786 fail_response:
Konrad Rzeszutek Wilk0faa8cc2011-04-14 17:58:19 -0400787 /* Haven't submitted any bio's yet. */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400788 make_response(blkif, req->id, req->operation, BLKIF_RSP_ERROR);
789 free_req(pending_req);
790 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400791 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400792
793 fail_put_bio:
Konrad Rzeszutek Wilk03e0edf2011-05-12 16:19:23 -0400794 for (i = 0; i < nbio; i++)
Konrad Rzeszutek Wilk77089922011-04-15 10:51:27 -0400795 bio_put(biolist[i]);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400796 __end_block_io_op(pending_req, -EINVAL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400797 msleep(1); /* back off a bit */
Konrad Rzeszutek Wilkfc53bf72011-05-05 13:37:23 -0400798 return -EIO;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400799}
800
801
802
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400803/*
804 * Put a response on the ring on how the operation fared.
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400805 */
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400806static void make_response(struct xen_blkif *blkif, u64 id,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400807 unsigned short op, int st)
808{
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800809 struct blkif_response resp;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400810 unsigned long flags;
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800811 union blkif_back_rings *blk_rings = &blkif->blk_rings;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400812 int notify;
813
814 resp.id = id;
815 resp.operation = op;
816 resp.status = st;
817
818 spin_lock_irqsave(&blkif->blk_ring_lock, flags);
819 /* Place on the response ring for the relevant domain. */
820 switch (blkif->blk_protocol) {
821 case BLKIF_PROTOCOL_NATIVE:
822 memcpy(RING_GET_RESPONSE(&blk_rings->native, blk_rings->native.rsp_prod_pvt),
823 &resp, sizeof(resp));
824 break;
825 case BLKIF_PROTOCOL_X86_32:
826 memcpy(RING_GET_RESPONSE(&blk_rings->x86_32, blk_rings->x86_32.rsp_prod_pvt),
827 &resp, sizeof(resp));
828 break;
829 case BLKIF_PROTOCOL_X86_64:
830 memcpy(RING_GET_RESPONSE(&blk_rings->x86_64, blk_rings->x86_64.rsp_prod_pvt),
831 &resp, sizeof(resp));
832 break;
833 default:
834 BUG();
835 }
836 blk_rings->common.rsp_prod_pvt++;
837 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&blk_rings->common, notify);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400838 spin_unlock_irqrestore(&blkif->blk_ring_lock, flags);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400839 if (notify)
840 notify_remote_via_irq(blkif->irq);
841}
842
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400843static int __init xen_blkif_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400844{
845 int i, mmap_pages;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400846 int rc = 0;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400847
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800848 if (!xen_pv_domain())
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400849 return -ENODEV;
850
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400851 blkbk = kzalloc(sizeof(struct xen_blkbk), GFP_KERNEL);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500852 if (!blkbk) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400853 pr_alert(DRV_PFX "%s: out of memory!\n", __func__);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500854 return -ENOMEM;
855 }
856
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400857 mmap_pages = xen_blkif_reqs * BLKIF_MAX_SEGMENTS_PER_REQUEST;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400858
Jan Beulich8e6dc6f2011-09-16 08:38:09 +0100859 blkbk->pending_reqs = kzalloc(sizeof(blkbk->pending_reqs[0]) *
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400860 xen_blkif_reqs, GFP_KERNEL);
Jan Beulich8e6dc6f2011-09-16 08:38:09 +0100861 blkbk->pending_grant_handles = kmalloc(sizeof(blkbk->pending_grant_handles[0]) *
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400862 mmap_pages, GFP_KERNEL);
863 blkbk->pending_pages = kzalloc(sizeof(blkbk->pending_pages[0]) *
864 mmap_pages, GFP_KERNEL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400865
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400866 if (!blkbk->pending_reqs || !blkbk->pending_grant_handles ||
867 !blkbk->pending_pages) {
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400868 rc = -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400869 goto out_of_memory;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400870 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400871
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500872 for (i = 0; i < mmap_pages; i++) {
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500873 blkbk->pending_grant_handles[i] = BLKBACK_INVALID_HANDLE;
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400874 blkbk->pending_pages[i] = alloc_page(GFP_KERNEL);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500875 if (blkbk->pending_pages[i] == NULL) {
876 rc = -ENOMEM;
877 goto out_of_memory;
878 }
879 }
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400880 rc = xen_blkif_interface_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400881 if (rc)
882 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400883
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500884 INIT_LIST_HEAD(&blkbk->pending_free);
885 spin_lock_init(&blkbk->pending_free_lock);
886 init_waitqueue_head(&blkbk->pending_free_wq);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400887
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400888 for (i = 0; i < xen_blkif_reqs; i++)
Konrad Rzeszutek Wilk2e9977c2011-04-14 17:42:07 -0400889 list_add_tail(&blkbk->pending_reqs[i].free_list,
890 &blkbk->pending_free);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400891
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400892 rc = xen_blkif_xenbus_init();
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400893 if (rc)
894 goto failed_init;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400895
896 return 0;
897
898 out_of_memory:
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400899 pr_alert(DRV_PFX "%s: out of memory\n", __func__);
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400900 failed_init:
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500901 kfree(blkbk->pending_reqs);
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400902 kfree(blkbk->pending_grant_handles);
Dan Carpenter9b83c772011-05-27 09:27:16 +0300903 if (blkbk->pending_pages) {
904 for (i = 0; i < mmap_pages; i++) {
905 if (blkbk->pending_pages[i])
906 __free_page(blkbk->pending_pages[i]);
907 }
908 kfree(blkbk->pending_pages);
Konrad Rzeszutek Wilk464fb412011-03-01 16:26:10 -0500909 }
Konrad Rzeszutek Wilka742b022011-03-14 12:41:26 -0400910 kfree(blkbk);
Konrad Rzeszutek Wilke8e28872011-02-25 10:51:29 -0500911 blkbk = NULL;
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400912 return rc;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400913}
914
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400915module_init(xen_blkif_init);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400916
917MODULE_LICENSE("Dual BSD/GPL");
Bastian Blanka7e93572011-06-29 14:40:50 +0200918MODULE_ALIAS("xen-backend:vbd");