blob: 057e05da83d179b960a6e65b887a58e7833990b1 [file] [log] [blame]
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001/*
2 * blkfront.c
3 *
4 * XenLinux virtual block device driver.
5 *
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
18 *
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
25 *
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 * IN THE SOFTWARE.
36 */
37
38#include <linux/interrupt.h>
39#include <linux/blkdev.h>
Bob Liu907c3eb2015-07-13 17:55:24 +080040#include <linux/blk-mq.h>
Ian Campbell597592d2008-02-21 13:03:45 -080041#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020042#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070043#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020045#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010046#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090047#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010048#include <linux/list.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070049
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070050#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070051#include <xen/xenbus.h>
52#include <xen/grant_table.h>
53#include <xen/events.h>
54#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010055#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070056
57#include <xen/interface/grant_table.h>
58#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070059#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070060
61#include <asm/xen/hypervisor.h>
62
63enum blkif_state {
64 BLKIF_STATE_DISCONNECTED,
65 BLKIF_STATE_CONNECTED,
66 BLKIF_STATE_SUSPENDED,
67};
68
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020069struct grant {
70 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010071 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010072 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020073};
74
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070075struct blk_shadow {
76 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040077 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020078 struct grant **grants_used;
79 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +020080 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +010081 unsigned int num_sg;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020082};
83
84struct split_bio {
85 struct bio *bio;
86 atomic_t pending;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070087};
88
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020089static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -070090static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070091
Roger Pau Monne402b27f2013-04-18 16:06:54 +020092/*
93 * Maximum number of segments in indirect requests, the actual value used by
94 * the frontend driver is the minimum of this value and the value provided
95 * by the backend driver.
96 */
97
98static unsigned int xen_blkif_max_segments = 32;
Konrad Rzeszutek Wilk2d5dc3b2013-05-15 10:39:34 -040099module_param_named(max, xen_blkif_max_segments, int, S_IRUGO);
100MODULE_PARM_DESC(max, "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200101
Bob Liu86839c52015-06-03 13:40:03 +0800102/*
103 * Maximum order of pages to be used for the shared ring between front and
104 * backend, 4KB page granularity is used.
105 */
106static unsigned int xen_blkif_max_ring_order;
107module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
108MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
109
Julien Grallc004a6f2015-07-22 16:44:54 +0100110#define BLK_RING_SIZE(info) \
111 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
112
113#define BLK_MAX_RING_SIZE \
114 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * XENBUS_MAX_RING_PAGES)
115
Bob Liu86839c52015-06-03 13:40:03 +0800116/*
117 * ring-ref%i i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
118 * characters are enough. Define to 20 to keep consist with backend.
119 */
120#define RINGREF_NAME_LEN (20)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700121
122/*
123 * We have one of these per vbd, whether ide, scsi or 'other'. They
124 * hang in private_data off the gendisk structure. We may end up
125 * putting all kinds of interesting stuff here :-)
126 */
127struct blkfront_info
128{
Steven Noonan34678112012-02-17 12:04:44 -0800129 spinlock_t io_lock;
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000130 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700131 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700132 struct gendisk *gd;
133 int vdevice;
134 blkif_vdev_t handle;
135 enum blkif_state connected;
Bob Liu86839c52015-06-03 13:40:03 +0800136 int ring_ref[XENBUS_MAX_RING_PAGES];
137 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700138 struct blkif_front_ring ring;
139 unsigned int evtchn, irq;
140 struct request_queue *rq;
141 struct work_struct work;
142 struct gnttab_free_callback callback;
Bob Liu86839c52015-06-03 13:40:03 +0800143 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100144 struct list_head grants;
145 struct list_head indirect_pages;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200146 unsigned int persistent_gnts_c;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700147 unsigned long shadow_free;
Tejun Heo4913efe2010-09-03 11:56:16 +0200148 unsigned int feature_flush;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400149 unsigned int feature_discard:1;
150 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800151 unsigned int discard_granularity;
152 unsigned int discard_alignment;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200153 unsigned int feature_persistent:1;
Julien Grallc004a6f2015-07-22 16:44:54 +0100154 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200155 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700156 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800157 struct blk_mq_tag_set tag_set;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700158};
159
Jan Beulich0e345822010-08-07 18:28:55 +0200160static unsigned int nr_minors;
161static unsigned long *minors;
162static DEFINE_SPINLOCK(minor_lock);
163
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700164#define GRANT_INVALID_REF 0
165
166#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700167#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700168
169#define BLKIF_MAJOR(dev) ((dev)>>8)
170#define BLKIF_MINOR(dev) ((dev) & 0xff)
171
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700172#define EXT_SHIFT 28
173#define EXTENDED (1<<EXT_SHIFT)
174#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
175#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000176#define EMULATED_HD_DISK_MINOR_OFFSET (0)
177#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200178#define EMULATED_SD_DISK_MINOR_OFFSET (0)
179#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700180
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700181#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700182
Julien Grallc004a6f2015-07-22 16:44:54 +0100183/*
184 * Grants are always the same size as a Xen page (i.e 4KB).
185 * A physical segment is always the same size as a Linux page.
186 * Number of grants per physical segment
187 */
188#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
189
190#define GRANTS_PER_INDIRECT_FRAME \
191 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
192
193#define PSEGS_PER_INDIRECT_FRAME \
194 (GRANTS_INDIRECT_FRAME / GRANTS_PSEGS)
195
196#define INDIRECT_GREFS(_grants) \
197 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
198
199#define GREFS(_psegs) ((_psegs) * GRANTS_PER_PSEG)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200200
201static int blkfront_setup_indirect(struct blkfront_info *info);
Bob Liud50babb2015-07-22 14:40:08 +0800202static int blkfront_gather_backend_features(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200203
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700204static int get_id_from_freelist(struct blkfront_info *info)
205{
206 unsigned long free = info->shadow_free;
Bob Liu86839c52015-06-03 13:40:03 +0800207 BUG_ON(free >= BLK_RING_SIZE(info));
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400208 info->shadow_free = info->shadow[free].req.u.rw.id;
209 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700210 return free;
211}
212
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400213static int add_id_to_freelist(struct blkfront_info *info,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700214 unsigned long id)
215{
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400216 if (info->shadow[id].req.u.rw.id != id)
217 return -EINVAL;
218 if (info->shadow[id].request == NULL)
219 return -EINVAL;
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -0400220 info->shadow[id].req.u.rw.id = info->shadow_free;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400221 info->shadow[id].request = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700222 info->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400223 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700224}
225
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100226static int fill_grant_buffer(struct blkfront_info *info, int num)
227{
228 struct page *granted_page;
229 struct grant *gnt_list_entry, *n;
230 int i = 0;
231
232 while(i < num) {
233 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
234 if (!gnt_list_entry)
235 goto out_of_memory;
236
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100237 if (info->feature_persistent) {
238 granted_page = alloc_page(GFP_NOIO);
239 if (!granted_page) {
240 kfree(gnt_list_entry);
241 goto out_of_memory;
242 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100243 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100244 }
245
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100246 gnt_list_entry->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100247 list_add(&gnt_list_entry->node, &info->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100248 i++;
249 }
250
251 return 0;
252
253out_of_memory:
254 list_for_each_entry_safe(gnt_list_entry, n,
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100255 &info->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100256 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100257 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100258 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100259 kfree(gnt_list_entry);
260 i--;
261 }
262 BUG_ON(i != 0);
263 return -ENOMEM;
264}
265
Julien Grall4f503fb2015-07-01 14:10:38 +0100266static struct grant *get_free_grant(struct blkfront_info *info)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100267{
268 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100269
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100270 BUG_ON(list_empty(&info->grants));
271 gnt_list_entry = list_first_entry(&info->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100272 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100273 list_del(&gnt_list_entry->node);
274
Julien Grall4f503fb2015-07-01 14:10:38 +0100275 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100276 info->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100277
278 return gnt_list_entry;
279}
280
281static inline void grant_foreign_access(const struct grant *gnt_list_entry,
282 const struct blkfront_info *info)
283{
284 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
285 info->xbdev->otherend_id,
286 gnt_list_entry->page,
287 0);
288}
289
290static struct grant *get_grant(grant_ref_t *gref_head,
291 unsigned long gfn,
292 struct blkfront_info *info)
293{
294 struct grant *gnt_list_entry = get_free_grant(info);
295
296 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100297 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100298
299 /* Assign a gref to this page */
300 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
301 BUG_ON(gnt_list_entry->gref == -ENOSPC);
302 if (info->feature_persistent)
303 grant_foreign_access(gnt_list_entry, info);
304 else {
305 /* Grant access to the GFN passed by the caller */
306 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
307 info->xbdev->otherend_id,
308 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100309 }
310
Julien Grall4f503fb2015-07-01 14:10:38 +0100311 return gnt_list_entry;
312}
313
314static struct grant *get_indirect_grant(grant_ref_t *gref_head,
315 struct blkfront_info *info)
316{
317 struct grant *gnt_list_entry = get_free_grant(info);
318
319 if (gnt_list_entry->gref != GRANT_INVALID_REF)
320 return gnt_list_entry;
321
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100322 /* Assign a gref to this page */
323 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
324 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100325 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100326 struct page *indirect_page;
327
328 /* Fetch a pre-allocated page to use for indirect grefs */
329 BUG_ON(list_empty(&info->indirect_pages));
330 indirect_page = list_first_entry(&info->indirect_pages,
331 struct page, lru);
332 list_del(&indirect_page->lru);
333 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100334 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100335 grant_foreign_access(gnt_list_entry, info);
336
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100337 return gnt_list_entry;
338}
339
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400340static const char *op_name(int op)
341{
342 static const char *const names[] = {
343 [BLKIF_OP_READ] = "read",
344 [BLKIF_OP_WRITE] = "write",
345 [BLKIF_OP_WRITE_BARRIER] = "barrier",
346 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
347 [BLKIF_OP_DISCARD] = "discard" };
348
349 if (op < 0 || op >= ARRAY_SIZE(names))
350 return "unknown";
351
352 if (!names[op])
353 return "reserved";
354
355 return names[op];
356}
Jan Beulich0e345822010-08-07 18:28:55 +0200357static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
358{
359 unsigned int end = minor + nr;
360 int rc;
361
362 if (end > nr_minors) {
363 unsigned long *bitmap, *old;
364
Thomas Meyerf0941482011-11-29 22:08:00 +0100365 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200366 GFP_KERNEL);
367 if (bitmap == NULL)
368 return -ENOMEM;
369
370 spin_lock(&minor_lock);
371 if (end > nr_minors) {
372 old = minors;
373 memcpy(bitmap, minors,
374 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
375 minors = bitmap;
376 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
377 } else
378 old = bitmap;
379 spin_unlock(&minor_lock);
380 kfree(old);
381 }
382
383 spin_lock(&minor_lock);
384 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900385 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200386 rc = 0;
387 } else
388 rc = -EBUSY;
389 spin_unlock(&minor_lock);
390
391 return rc;
392}
393
394static void xlbd_release_minors(unsigned int minor, unsigned int nr)
395{
396 unsigned int end = minor + nr;
397
398 BUG_ON(end > nr_minors);
399 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900400 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200401 spin_unlock(&minor_lock);
402}
403
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700404static void blkif_restart_queue_callback(void *arg)
405{
406 struct blkfront_info *info = (struct blkfront_info *)arg;
407 schedule_work(&info->work);
408}
409
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700410static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800411{
412 /* We don't have real geometry info, but let's at least return
413 values consistent with the size of the device */
414 sector_t nsect = get_capacity(bd->bd_disk);
415 sector_t cylinders = nsect;
416
417 hg->heads = 0xff;
418 hg->sectors = 0x3f;
419 sector_div(cylinders, hg->heads * hg->sectors);
420 hg->cylinders = cylinders;
421 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
422 hg->cylinders = 0xffff;
423 return 0;
424}
425
Al Viroa63c8482008-03-02 10:23:47 -0500426static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200427 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200428{
Al Viroa63c8482008-03-02 10:23:47 -0500429 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200430 int i;
431
432 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
433 command, (long)argument);
434
435 switch (command) {
436 case CDROMMULTISESSION:
437 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
438 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
439 if (put_user(0, (char __user *)(argument + i)))
440 return -EFAULT;
441 return 0;
442
443 case CDROM_GET_CAPABILITY: {
444 struct gendisk *gd = info->gd;
445 if (gd->flags & GENHD_FL_CD)
446 return 0;
447 return -EINVAL;
448 }
449
450 default:
451 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
452 command);*/
453 return -EINVAL; /* same return as native Linux */
454 }
455
456 return 0;
457}
458
Julien Grall33204662015-06-29 17:35:24 +0100459static int blkif_queue_discard_req(struct request *req)
460{
461 struct blkfront_info *info = req->rq_disk->private_data;
462 struct blkif_request *ring_req;
463 unsigned long id;
464
465 /* Fill out a communications ring structure. */
466 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
467 id = get_id_from_freelist(info);
468 info->shadow[id].request = req;
469
470 ring_req->operation = BLKIF_OP_DISCARD;
471 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
472 ring_req->u.discard.id = id;
473 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
474 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
475 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
476 else
477 ring_req->u.discard.flag = 0;
478
479 info->ring.req_prod_pvt++;
480
481 /* Keep a private copy so we can reissue requests when recovering. */
482 info->shadow[id].req = *ring_req;
483
484 return 0;
485}
486
Julien Grallc004a6f2015-07-22 16:44:54 +0100487struct setup_rw_req {
488 unsigned int grant_idx;
489 struct blkif_request_segment *segments;
490 struct blkfront_info *info;
491 struct blkif_request *ring_req;
492 grant_ref_t gref_head;
493 unsigned int id;
494 /* Only used when persistent grant is used and it's a read request */
495 bool need_copy;
496 unsigned int bvec_off;
497 char *bvec_data;
498};
499
500static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
501 unsigned int len, void *data)
502{
503 struct setup_rw_req *setup = data;
504 int n, ref;
505 struct grant *gnt_list_entry;
506 unsigned int fsect, lsect;
507 /* Convenient aliases */
508 unsigned int grant_idx = setup->grant_idx;
509 struct blkif_request *ring_req = setup->ring_req;
510 struct blkfront_info *info = setup->info;
511 struct blk_shadow *shadow = &info->shadow[setup->id];
512
513 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
514 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
515 if (setup->segments)
516 kunmap_atomic(setup->segments);
517
518 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
519 gnt_list_entry = get_indirect_grant(&setup->gref_head, info);
520 shadow->indirect_grants[n] = gnt_list_entry;
521 setup->segments = kmap_atomic(gnt_list_entry->page);
522 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
523 }
524
525 gnt_list_entry = get_grant(&setup->gref_head, gfn, info);
526 ref = gnt_list_entry->gref;
527 shadow->grants_used[grant_idx] = gnt_list_entry;
528
529 if (setup->need_copy) {
530 void *shared_data;
531
532 shared_data = kmap_atomic(gnt_list_entry->page);
533 /*
534 * this does not wipe data stored outside the
535 * range sg->offset..sg->offset+sg->length.
536 * Therefore, blkback *could* see data from
537 * previous requests. This is OK as long as
538 * persistent grants are shared with just one
539 * domain. It may need refactoring if this
540 * changes
541 */
542 memcpy(shared_data + offset,
543 setup->bvec_data + setup->bvec_off,
544 len);
545
546 kunmap_atomic(shared_data);
547 setup->bvec_off += len;
548 }
549
550 fsect = offset >> 9;
551 lsect = fsect + (len >> 9) - 1;
552 if (ring_req->operation != BLKIF_OP_INDIRECT) {
553 ring_req->u.rw.seg[grant_idx] =
554 (struct blkif_request_segment) {
555 .gref = ref,
556 .first_sect = fsect,
557 .last_sect = lsect };
558 } else {
559 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
560 (struct blkif_request_segment) {
561 .gref = ref,
562 .first_sect = fsect,
563 .last_sect = lsect };
564 }
565
566 (setup->grant_idx)++;
567}
568
Julien Grall33204662015-06-29 17:35:24 +0100569static int blkif_queue_rw_req(struct request *req)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700570{
571 struct blkfront_info *info = req->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700572 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700573 unsigned long id;
Julien Grallc004a6f2015-07-22 16:44:54 +0100574 int i;
575 struct setup_rw_req setup = {
576 .grant_idx = 0,
577 .segments = NULL,
578 .info = info,
579 .need_copy = rq_data_dir(req) && info->feature_persistent,
580 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200581
582 /*
583 * Used to store if we are able to queue the request by just using
584 * existing persistent grants, or if we have to get new grants,
585 * as there are not sufficiently many free.
586 */
587 bool new_persistent_gnts;
Jens Axboe9e973e62009-02-24 08:10:09 +0100588 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100589 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700590
Julien Grallc004a6f2015-07-22 16:44:54 +0100591 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200592 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
593 /*
594 * If we are using indirect segments we need to account
595 * for the indirect grefs used in the request.
596 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100597 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200598
599 /* Check if we have enough grants to allocate a requests */
600 if (info->persistent_gnts_c < max_grefs) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200601 new_persistent_gnts = 1;
602 if (gnttab_alloc_grant_references(
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200603 max_grefs - info->persistent_gnts_c,
Julien Grallc004a6f2015-07-22 16:44:54 +0100604 &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200605 gnttab_request_free_callback(
606 &info->callback,
607 blkif_restart_queue_callback,
608 info,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200609 max_grefs);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200610 return 1;
611 }
612 } else
613 new_persistent_gnts = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700614
615 /* Fill out a communications ring structure. */
616 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
617 id = get_id_from_freelist(info);
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400618 info->shadow[id].request = req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700619
Julien Grall33204662015-06-29 17:35:24 +0100620 BUG_ON(info->max_indirect_segments == 0 &&
Julien Grallc004a6f2015-07-22 16:44:54 +0100621 GREFS(req->nr_phys_segments) > BLKIF_MAX_SEGMENTS_PER_REQUEST);
Julien Grall33204662015-06-29 17:35:24 +0100622 BUG_ON(info->max_indirect_segments &&
Julien Grallc004a6f2015-07-22 16:44:54 +0100623 GREFS(req->nr_phys_segments) > info->max_indirect_segments);
624
625 num_sg = blk_rq_map_sg(req->q, req, info->shadow[id].sg);
626 num_grant = 0;
627 /* Calculate the number of grant used */
628 for_each_sg(info->shadow[id].sg, sg, num_sg, i)
629 num_grant += gnttab_count_grant(sg->offset, sg->length);
630
Julien Grall33204662015-06-29 17:35:24 +0100631 ring_req->u.rw.id = id;
Julien Grallc004a6f2015-07-22 16:44:54 +0100632 info->shadow[id].num_sg = num_sg;
633 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST) {
Julien Grall33204662015-06-29 17:35:24 +0100634 /*
635 * The indirect operation can only be a BLKIF_OP_READ or
636 * BLKIF_OP_WRITE
637 */
638 BUG_ON(req->cmd_flags & (REQ_FLUSH | REQ_FUA));
639 ring_req->operation = BLKIF_OP_INDIRECT;
640 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
641 BLKIF_OP_WRITE : BLKIF_OP_READ;
642 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
643 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100644 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800645 } else {
Julien Grall33204662015-06-29 17:35:24 +0100646 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
647 ring_req->u.rw.handle = info->handle;
648 ring_req->operation = rq_data_dir(req) ?
649 BLKIF_OP_WRITE : BLKIF_OP_READ;
650 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200651 /*
Julien Grall33204662015-06-29 17:35:24 +0100652 * Ideally we can do an unordered flush-to-disk.
653 * In case the backend onlysupports barriers, use that.
654 * A barrier request a superset of FUA, so we can
655 * implement it the same way. (It's also a FLUSH+FUA,
656 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200657 */
Julien Grall33204662015-06-29 17:35:24 +0100658 switch (info->feature_flush &
659 ((REQ_FLUSH|REQ_FUA))) {
660 case REQ_FLUSH|REQ_FUA:
661 ring_req->operation =
662 BLKIF_OP_WRITE_BARRIER;
663 break;
664 case REQ_FLUSH:
665 ring_req->operation =
666 BLKIF_OP_FLUSH_DISKCACHE;
667 break;
668 default:
669 ring_req->operation = 0;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200670 }
Li Dongyanged30bf32011-09-01 18:39:09 +0800671 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100672 ring_req->u.rw.nr_segments = num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700673 }
Julien Grall33204662015-06-29 17:35:24 +0100674
Julien Grallc004a6f2015-07-22 16:44:54 +0100675 setup.ring_req = ring_req;
676 setup.id = id;
677 for_each_sg(info->shadow[id].sg, sg, num_sg, i) {
678 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100679
Julien Grallc004a6f2015-07-22 16:44:54 +0100680 if (setup.need_copy) {
681 setup.bvec_off = sg->offset;
682 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100683 }
684
Julien Grallc004a6f2015-07-22 16:44:54 +0100685 gnttab_foreach_grant_in_range(sg_page(sg),
686 sg->offset,
687 sg->length,
688 blkif_setup_rw_req_grant,
689 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100690
Julien Grallc004a6f2015-07-22 16:44:54 +0100691 if (setup.need_copy)
692 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100693 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100694 if (setup.segments)
695 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700696
697 info->ring.req_prod_pvt++;
698
699 /* Keep a private copy so we can reissue requests when recovering. */
700 info->shadow[id].req = *ring_req;
701
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200702 if (new_persistent_gnts)
Julien Grallc004a6f2015-07-22 16:44:54 +0100703 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700704
705 return 0;
706}
707
Julien Grall33204662015-06-29 17:35:24 +0100708/*
709 * Generate a Xen blkfront IO request from a blk layer request. Reads
710 * and writes are handled as expected.
711 *
712 * @req: a request struct
713 */
714static int blkif_queue_request(struct request *req)
715{
716 struct blkfront_info *info = req->rq_disk->private_data;
717
718 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
719 return 1;
720
721 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE)))
722 return blkif_queue_discard_req(req);
723 else
724 return blkif_queue_rw_req(req);
725}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700726
727static inline void flush_requests(struct blkfront_info *info)
728{
729 int notify;
730
731 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
732
733 if (notify)
734 notify_remote_via_irq(info->irq);
735}
736
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100737static inline bool blkif_request_flush_invalid(struct request *req,
738 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200739{
740 return ((req->cmd_type != REQ_TYPE_FS) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100741 ((req->cmd_flags & REQ_FLUSH) &&
742 !(info->feature_flush & REQ_FLUSH)) ||
743 ((req->cmd_flags & REQ_FUA) &&
744 !(info->feature_flush & REQ_FUA)));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200745}
746
Bob Liu907c3eb2015-07-13 17:55:24 +0800747static int blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
748 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700749{
Bob Liu907c3eb2015-07-13 17:55:24 +0800750 struct blkfront_info *info = qd->rq->rq_disk->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700751
Bob Liu907c3eb2015-07-13 17:55:24 +0800752 blk_mq_start_request(qd->rq);
753 spin_lock_irq(&info->io_lock);
754 if (RING_FULL(&info->ring))
755 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700756
Bob Liu907c3eb2015-07-13 17:55:24 +0800757 if (blkif_request_flush_invalid(qd->rq, info))
758 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700759
Bob Liu907c3eb2015-07-13 17:55:24 +0800760 if (blkif_queue_request(qd->rq))
761 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700762
Bob Liu907c3eb2015-07-13 17:55:24 +0800763 flush_requests(info);
764 spin_unlock_irq(&info->io_lock);
765 return BLK_MQ_RQ_QUEUE_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700766
Bob Liu907c3eb2015-07-13 17:55:24 +0800767out_err:
768 spin_unlock_irq(&info->io_lock);
769 return BLK_MQ_RQ_QUEUE_ERROR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900770
Bob Liu907c3eb2015-07-13 17:55:24 +0800771out_busy:
772 spin_unlock_irq(&info->io_lock);
773 blk_mq_stop_hw_queue(hctx);
774 return BLK_MQ_RQ_QUEUE_BUSY;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700775}
776
Bob Liu907c3eb2015-07-13 17:55:24 +0800777static struct blk_mq_ops blkfront_mq_ops = {
778 .queue_rq = blkif_queue_rq,
779 .map_queue = blk_mq_map_queue,
780};
781
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200782static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200783 unsigned int physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200784 unsigned int segments)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700785{
Jens Axboe165125e2007-07-24 09:28:11 +0200786 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800787 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700788
Bob Liu907c3eb2015-07-13 17:55:24 +0800789 memset(&info->tag_set, 0, sizeof(info->tag_set));
790 info->tag_set.ops = &blkfront_mq_ops;
791 info->tag_set.nr_hw_queues = 1;
792 info->tag_set.queue_depth = BLK_RING_SIZE(info);
793 info->tag_set.numa_node = NUMA_NO_NODE;
794 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
795 info->tag_set.cmd_size = 0;
796 info->tag_set.driver_data = info;
797
798 if (blk_mq_alloc_tag_set(&info->tag_set))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700799 return -1;
Bob Liu907c3eb2015-07-13 17:55:24 +0800800 rq = blk_mq_init_queue(&info->tag_set);
801 if (IS_ERR(rq)) {
802 blk_mq_free_tag_set(&info->tag_set);
803 return -1;
804 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700805
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900806 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700807
Li Dongyanged30bf32011-09-01 18:39:09 +0800808 if (info->feature_discard) {
809 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
810 blk_queue_max_discard_sectors(rq, get_capacity(gd));
811 rq->limits.discard_granularity = info->discard_granularity;
812 rq->limits.discard_alignment = info->discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400813 if (info->feature_secdiscard)
814 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800815 }
816
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700817 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400818 blk_queue_logical_block_size(rq, sector_size);
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200819 blk_queue_physical_block_size(rq, physical_sector_size);
Julien Grallc004a6f2015-07-22 16:44:54 +0100820 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700821
822 /* Each segment in a request is up to an aligned page in size. */
823 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
824 blk_queue_max_segment_size(rq, PAGE_SIZE);
825
826 /* Ensure a merged request will fit in a single I/O ring slot. */
Julien Grallc004a6f2015-07-22 16:44:54 +0100827 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700828
829 /* Make sure buffer addresses are sector-aligned. */
830 blk_queue_dma_alignment(rq, 511);
831
Ian Campbell1c91fe12008-06-17 10:47:08 +0200832 /* Make sure we don't use bounce buffers. */
833 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
834
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700835 gd->queue = rq;
836
837 return 0;
838}
839
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100840static const char *flush_info(unsigned int feature_flush)
841{
842 switch (feature_flush & ((REQ_FLUSH | REQ_FUA))) {
843 case REQ_FLUSH|REQ_FUA:
844 return "barrier: enabled;";
845 case REQ_FLUSH:
846 return "flush diskcache: enabled;";
847 default:
848 return "barrier or flush: disabled;";
849 }
850}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700851
Tejun Heo4913efe2010-09-03 11:56:16 +0200852static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700853{
Tejun Heo4913efe2010-09-03 11:56:16 +0200854 blk_queue_flush(info->rq, info->feature_flush);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100855 pr_info("blkfront: %s: %s %s %s %s %s\n",
856 info->gd->disk_name, flush_info(info->feature_flush),
857 "persistent grants:", info->feature_persistent ?
858 "enabled;" : "disabled;", "indirect descriptors:",
859 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700860}
861
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000862static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
863{
864 int major;
865 major = BLKIF_MAJOR(vdevice);
866 *minor = BLKIF_MINOR(vdevice);
867 switch (major) {
868 case XEN_IDE0_MAJOR:
869 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
870 *minor = ((*minor / 64) * PARTS_PER_DISK) +
871 EMULATED_HD_DISK_MINOR_OFFSET;
872 break;
873 case XEN_IDE1_MAJOR:
874 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
875 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
876 EMULATED_HD_DISK_MINOR_OFFSET;
877 break;
878 case XEN_SCSI_DISK0_MAJOR:
879 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
880 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
881 break;
882 case XEN_SCSI_DISK1_MAJOR:
883 case XEN_SCSI_DISK2_MAJOR:
884 case XEN_SCSI_DISK3_MAJOR:
885 case XEN_SCSI_DISK4_MAJOR:
886 case XEN_SCSI_DISK5_MAJOR:
887 case XEN_SCSI_DISK6_MAJOR:
888 case XEN_SCSI_DISK7_MAJOR:
889 *offset = (*minor / PARTS_PER_DISK) +
890 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
891 EMULATED_SD_DISK_NAME_OFFSET;
892 *minor = *minor +
893 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
894 EMULATED_SD_DISK_MINOR_OFFSET;
895 break;
896 case XEN_SCSI_DISK8_MAJOR:
897 case XEN_SCSI_DISK9_MAJOR:
898 case XEN_SCSI_DISK10_MAJOR:
899 case XEN_SCSI_DISK11_MAJOR:
900 case XEN_SCSI_DISK12_MAJOR:
901 case XEN_SCSI_DISK13_MAJOR:
902 case XEN_SCSI_DISK14_MAJOR:
903 case XEN_SCSI_DISK15_MAJOR:
904 *offset = (*minor / PARTS_PER_DISK) +
905 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
906 EMULATED_SD_DISK_NAME_OFFSET;
907 *minor = *minor +
908 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
909 EMULATED_SD_DISK_MINOR_OFFSET;
910 break;
911 case XENVBD_MAJOR:
912 *offset = *minor / PARTS_PER_DISK;
913 break;
914 default:
915 printk(KERN_WARNING "blkfront: your disk configuration is "
916 "incorrect, please use an xvd device instead\n");
917 return -ENODEV;
918 }
919 return 0;
920}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700921
Jan Beuliche77c78c2012-04-05 16:37:22 +0100922static char *encode_disk_name(char *ptr, unsigned int n)
923{
924 if (n >= 26)
925 ptr = encode_disk_name(ptr, n / 26 - 1);
926 *ptr = 'a' + n % 26;
927 return ptr + 1;
928}
929
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700930static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
931 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200932 u16 vdisk_info, u16 sector_size,
933 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700934{
935 struct gendisk *gd;
936 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000937 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700938 unsigned int offset;
939 int minor;
940 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +0100941 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700942
943 BUG_ON(info->gd != NULL);
944 BUG_ON(info->rq != NULL);
945
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700946 if ((info->vdevice>>EXT_SHIFT) > 1) {
947 /* this is above the extended range; something is wrong */
948 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
949 return -ENODEV;
950 }
951
952 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000953 err = xen_translate_vdev(info->vdevice, &minor, &offset);
954 if (err)
955 return err;
956 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700957 } else {
958 minor = BLKIF_MINOR_EXT(info->vdevice);
959 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000960 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +0200961 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000962 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
963 "emulated IDE disks,\n\t choose an xvd device name"
964 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700965 }
Jan Beuliche77c78c2012-04-05 16:37:22 +0100966 if (minor >> MINORBITS) {
967 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
968 info->vdevice, minor);
969 return -ENODEV;
970 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700971
972 if ((minor % nr_parts) == 0)
973 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700974
Jan Beulich0e345822010-08-07 18:28:55 +0200975 err = xlbd_reserve_minors(minor, nr_minors);
976 if (err)
977 goto out;
978 err = -ENODEV;
979
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700980 gd = alloc_disk(nr_minors);
981 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +0200982 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700983
Jan Beuliche77c78c2012-04-05 16:37:22 +0100984 strcpy(gd->disk_name, DEV_NAME);
985 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
986 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
987 if (nr_minors > 1)
988 *ptr = 0;
989 else
990 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
991 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700992
993 gd->major = XENVBD_MAJOR;
994 gd->first_minor = minor;
995 gd->fops = &xlvbd_block_fops;
996 gd->private_data = info;
997 gd->driverfs_dev = &(info->xbdev->dev);
998 set_capacity(gd, capacity);
999
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001000 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001001 info->max_indirect_segments ? :
1002 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001003 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001004 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001005 }
1006
1007 info->rq = gd->queue;
1008 info->gd = gd;
1009
Tejun Heo4913efe2010-09-03 11:56:16 +02001010 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001011
1012 if (vdisk_info & VDISK_READONLY)
1013 set_disk_ro(gd, 1);
1014
1015 if (vdisk_info & VDISK_REMOVABLE)
1016 gd->flags |= GENHD_FL_REMOVABLE;
1017
1018 if (vdisk_info & VDISK_CDROM)
1019 gd->flags |= GENHD_FL_CD;
1020
1021 return 0;
1022
Jan Beulich0e345822010-08-07 18:28:55 +02001023 release:
1024 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001025 out:
1026 return err;
1027}
1028
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001029static void xlvbd_release_gendisk(struct blkfront_info *info)
1030{
1031 unsigned int minor, nr_minors;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001032
1033 if (info->rq == NULL)
1034 return;
1035
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001036 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001037 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001038
1039 /* No more gnttab callback work. */
1040 gnttab_cancel_free_callback(&info->callback);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001041
1042 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -07001043 flush_work(&info->work);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001044
1045 del_gendisk(info->gd);
1046
1047 minor = info->gd->first_minor;
1048 nr_minors = info->gd->minors;
1049 xlbd_release_minors(minor, nr_minors);
1050
1051 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001052 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001053 info->rq = NULL;
1054
1055 put_disk(info->gd);
1056 info->gd = NULL;
1057}
1058
Bob Liu907c3eb2015-07-13 17:55:24 +08001059/* Must be called with io_lock holded */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001060static void kick_pending_request_queues(struct blkfront_info *info)
1061{
Bob Liu907c3eb2015-07-13 17:55:24 +08001062 if (!RING_FULL(&info->ring))
1063 blk_mq_start_stopped_hw_queues(info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001064}
1065
1066static void blkif_restart_queue(struct work_struct *work)
1067{
1068 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
1069
Steven Noonan34678112012-02-17 12:04:44 -08001070 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001071 if (info->connected == BLKIF_STATE_CONNECTED)
1072 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -08001073 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001074}
1075
1076static void blkif_free(struct blkfront_info *info, int suspend)
1077{
Roger Pau Monne155b7ed2013-03-18 17:49:34 +01001078 struct grant *persistent_gnt;
1079 struct grant *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001080 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001081
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001082 /* Prevent new requests being issued until we fix things up. */
Steven Noonan34678112012-02-17 12:04:44 -08001083 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001084 info->connected = suspend ?
1085 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1086 /* No more blkif_request(). */
1087 if (info->rq)
Bob Liu907c3eb2015-07-13 17:55:24 +08001088 blk_mq_stop_hw_queues(info->rq);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001089
1090 /* Remove all persistent grants */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001091 if (!list_empty(&info->grants)) {
Roger Pau Monne155b7ed2013-03-18 17:49:34 +01001092 list_for_each_entry_safe(persistent_gnt, n,
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001093 &info->grants, node) {
Roger Pau Monne155b7ed2013-03-18 17:49:34 +01001094 list_del(&persistent_gnt->node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +01001095 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1096 gnttab_end_foreign_access(persistent_gnt->gref,
1097 0, 0UL);
1098 info->persistent_gnts_c--;
1099 }
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001100 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001101 __free_page(persistent_gnt->page);
Roger Pau Monne155b7ed2013-03-18 17:49:34 +01001102 kfree(persistent_gnt);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001103 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001104 }
Roger Pau Monne9c1e0502013-03-18 17:49:35 +01001105 BUG_ON(info->persistent_gnts_c != 0);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001106
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001107 /*
1108 * Remove indirect pages, this only happens when using indirect
1109 * descriptors but not persistent grants
1110 */
1111 if (!list_empty(&info->indirect_pages)) {
1112 struct page *indirect_page, *n;
1113
1114 BUG_ON(info->feature_persistent);
1115 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
1116 list_del(&indirect_page->lru);
1117 __free_page(indirect_page);
1118 }
1119 }
1120
Bob Liu86839c52015-06-03 13:40:03 +08001121 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001122 /*
1123 * Clear persistent grants present in requests already
1124 * on the shared ring
1125 */
1126 if (!info->shadow[i].request)
1127 goto free_shadow;
1128
1129 segs = info->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1130 info->shadow[i].req.u.indirect.nr_segments :
1131 info->shadow[i].req.u.rw.nr_segments;
1132 for (j = 0; j < segs; j++) {
1133 persistent_gnt = info->shadow[i].grants_used[j];
1134 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001135 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001136 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001137 kfree(persistent_gnt);
1138 }
1139
1140 if (info->shadow[i].req.operation != BLKIF_OP_INDIRECT)
1141 /*
1142 * If this is not an indirect operation don't try to
1143 * free indirect segments
1144 */
1145 goto free_shadow;
1146
1147 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
1148 persistent_gnt = info->shadow[i].indirect_grants[j];
1149 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001150 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001151 kfree(persistent_gnt);
1152 }
1153
1154free_shadow:
1155 kfree(info->shadow[i].grants_used);
1156 info->shadow[i].grants_used = NULL;
1157 kfree(info->shadow[i].indirect_grants);
1158 info->shadow[i].indirect_grants = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001159 kfree(info->shadow[i].sg);
1160 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001161 }
1162
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001163 /* No more gnttab callback work. */
1164 gnttab_cancel_free_callback(&info->callback);
Steven Noonan34678112012-02-17 12:04:44 -08001165 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001166
1167 /* Flush gnttab callback work. Must be done with no locks held. */
Tejun Heo43829732012-08-20 14:51:24 -07001168 flush_work(&info->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001169
1170 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001171 for (i = 0; i < info->nr_ring_pages; i++) {
1172 if (info->ring_ref[i] != GRANT_INVALID_REF) {
1173 gnttab_end_foreign_access(info->ring_ref[i], 0, 0);
1174 info->ring_ref[i] = GRANT_INVALID_REF;
1175 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001176 }
Bob Liu86839c52015-06-03 13:40:03 +08001177 free_pages((unsigned long)info->ring.sring, get_order(info->nr_ring_pages * PAGE_SIZE));
1178 info->ring.sring = NULL;
1179
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001180 if (info->irq)
1181 unbind_from_irqhandler(info->irq, info);
1182 info->evtchn = info->irq = 0;
1183
1184}
1185
Julien Grallc004a6f2015-07-22 16:44:54 +01001186struct copy_from_grant {
1187 const struct blk_shadow *s;
1188 unsigned int grant_idx;
1189 unsigned int bvec_offset;
1190 char *bvec_data;
1191};
1192
1193static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1194 unsigned int len, void *data)
1195{
1196 struct copy_from_grant *info = data;
1197 char *shared_data;
1198 /* Convenient aliases */
1199 const struct blk_shadow *s = info->s;
1200
1201 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1202
1203 memcpy(info->bvec_data + info->bvec_offset,
1204 shared_data + offset, len);
1205
1206 info->bvec_offset += len;
1207 info->grant_idx++;
1208
1209 kunmap_atomic(shared_data);
1210}
1211
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001212static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info,
1213 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001214{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001215 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001216 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001217 int num_sg, num_grant;
1218 struct copy_from_grant data = {
1219 .s = s,
1220 .grant_idx = 0,
1221 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001222
Julien Grallc004a6f2015-07-22 16:44:54 +01001223 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001224 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grallc004a6f2015-07-22 16:44:54 +01001225 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001226
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001227 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001228 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001229 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001230
1231 data.bvec_offset = sg->offset;
1232 data.bvec_data = kmap_atomic(sg_page(sg));
1233
1234 gnttab_foreach_grant_in_range(sg_page(sg),
1235 sg->offset,
1236 sg->length,
1237 blkif_copy_from_grant,
1238 &data);
1239
1240 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001241 }
1242 }
1243 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001244 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001245 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1246 /*
1247 * If the grant is still mapped by the backend (the
1248 * backend has chosen to make this grant persistent)
1249 * we add it at the head of the list, so it will be
1250 * reused first.
1251 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001252 if (!info->feature_persistent)
1253 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1254 s->grants_used[i]->gref);
1255 list_add(&s->grants_used[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001256 info->persistent_gnts_c++;
1257 } else {
1258 /*
1259 * If the grant is not mapped by the backend we end the
1260 * foreign access and add it to the tail of the list,
1261 * so it will not be picked again unless we run out of
1262 * persistent grants.
1263 */
1264 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1265 s->grants_used[i]->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001266 list_add_tail(&s->grants_used[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001267 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001268 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001269 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001270 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001271 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001272 if (!info->feature_persistent)
1273 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1274 s->indirect_grants[i]->gref);
1275 list_add(&s->indirect_grants[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001276 info->persistent_gnts_c++;
1277 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001278 struct page *indirect_page;
1279
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001280 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001281 /*
1282 * Add the used indirect page back to the list of
1283 * available pages for indirect grefs.
1284 */
Bob Liu7b076752015-07-22 14:40:09 +08001285 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001286 indirect_page = s->indirect_grants[i]->page;
Bob Liu7b076752015-07-22 14:40:09 +08001287 list_add(&indirect_page->lru, &info->indirect_pages);
1288 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001289 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001290 list_add_tail(&s->indirect_grants[i]->node, &info->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001291 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001292 }
1293 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001294}
1295
1296static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1297{
1298 struct request *req;
1299 struct blkif_response *bret;
1300 RING_IDX i, rp;
1301 unsigned long flags;
1302 struct blkfront_info *info = (struct blkfront_info *)dev_id;
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001303 int error;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001304
Steven Noonan34678112012-02-17 12:04:44 -08001305 spin_lock_irqsave(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001306
1307 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
Steven Noonan34678112012-02-17 12:04:44 -08001308 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001309 return IRQ_HANDLED;
1310 }
1311
1312 again:
1313 rp = info->ring.sring->rsp_prod;
1314 rmb(); /* Ensure we see queued responses up to 'rp'. */
1315
1316 for (i = info->ring.rsp_cons; i != rp; i++) {
1317 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001318
1319 bret = RING_GET_RESPONSE(&info->ring, i);
1320 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001321 /*
1322 * The backend has messed up and given us an id that we would
1323 * never have given to it (we stamp it up to BLK_RING_SIZE -
1324 * look in get_id_from_freelist.
1325 */
Bob Liu86839c52015-06-03 13:40:03 +08001326 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001327 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1328 info->gd->disk_name, op_name(bret->operation), id);
1329 /* We can't safely get the 'struct request' as
1330 * the id is busted. */
1331 continue;
1332 }
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001333 req = info->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001334
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001335 if (bret->operation != BLKIF_OP_DISCARD)
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001336 blkif_completion(&info->shadow[id], info, bret);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001337
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001338 if (add_id_to_freelist(info, id)) {
1339 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1340 info->gd->disk_name, op_name(bret->operation), id);
1341 continue;
1342 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001343
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001344 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001345 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001346 case BLKIF_OP_DISCARD:
1347 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1348 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001349 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1350 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001351 error = -EOPNOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001352 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001353 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001354 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001355 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001356 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001357 blk_mq_complete_request(req, error);
Li Dongyanged30bf32011-09-01 18:39:09 +08001358 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001359 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001360 case BLKIF_OP_WRITE_BARRIER:
1361 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001362 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1363 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001364 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001365 }
1366 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001367 info->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001368 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1369 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001370 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001371 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001372 if (unlikely(error)) {
1373 if (error == -EOPNOTSUPP)
1374 error = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001375 info->feature_flush = 0;
1376 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001377 }
1378 /* fall through */
1379 case BLKIF_OP_READ:
1380 case BLKIF_OP_WRITE:
1381 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1382 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1383 "request: %x\n", bret->status);
1384
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001385 blk_mq_complete_request(req, error);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001386 break;
1387 default:
1388 BUG();
1389 }
1390 }
1391
1392 info->ring.rsp_cons = i;
1393
1394 if (i != info->ring.req_prod_pvt) {
1395 int more_to_do;
1396 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
1397 if (more_to_do)
1398 goto again;
1399 } else
1400 info->ring.sring->rsp_event = i + 1;
1401
1402 kick_pending_request_queues(info);
1403
Steven Noonan34678112012-02-17 12:04:44 -08001404 spin_unlock_irqrestore(&info->io_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001405
1406 return IRQ_HANDLED;
1407}
1408
1409
1410static int setup_blkring(struct xenbus_device *dev,
1411 struct blkfront_info *info)
1412{
1413 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001414 int err, i;
Julien Grallc004a6f2015-07-22 16:44:54 +01001415 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Bob Liu86839c52015-06-03 13:40:03 +08001416 grant_ref_t gref[XENBUS_MAX_RING_PAGES];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001417
Bob Liu86839c52015-06-03 13:40:03 +08001418 for (i = 0; i < info->nr_ring_pages; i++)
1419 info->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001420
Bob Liu86839c52015-06-03 13:40:03 +08001421 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1422 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001423 if (!sring) {
1424 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1425 return -ENOMEM;
1426 }
1427 SHARED_RING_INIT(sring);
Bob Liu86839c52015-06-03 13:40:03 +08001428 FRONT_RING_INIT(&info->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001429
Bob Liu86839c52015-06-03 13:40:03 +08001430 err = xenbus_grant_ring(dev, info->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001431 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001432 free_pages((unsigned long)sring, get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001433 info->ring.sring = NULL;
1434 goto fail;
1435 }
Bob Liu86839c52015-06-03 13:40:03 +08001436 for (i = 0; i < info->nr_ring_pages; i++)
1437 info->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001438
1439 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1440 if (err)
1441 goto fail;
1442
Theodore Ts'o89c30f12012-07-17 13:46:19 -04001443 err = bind_evtchn_to_irqhandler(info->evtchn, blkif_interrupt, 0,
1444 "blkif", info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001445 if (err <= 0) {
1446 xenbus_dev_fatal(dev, err,
1447 "bind_evtchn_to_irqhandler failed");
1448 goto fail;
1449 }
1450 info->irq = err;
1451
1452 return 0;
1453fail:
1454 blkif_free(info, 0);
1455 return err;
1456}
1457
1458
1459/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001460static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001461 struct blkfront_info *info)
1462{
1463 const char *message = NULL;
1464 struct xenbus_transaction xbt;
Bob Liu86839c52015-06-03 13:40:03 +08001465 int err, i;
1466 unsigned int max_page_order = 0;
1467 unsigned int ring_page_order = 0;
1468
1469 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1470 "max-ring-page-order", "%u", &max_page_order);
1471 if (err != 1)
1472 info->nr_ring_pages = 1;
1473 else {
1474 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1475 info->nr_ring_pages = 1 << ring_page_order;
1476 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001477
1478 /* Create shared ring, alloc event channel. */
1479 err = setup_blkring(dev, info);
1480 if (err)
1481 goto out;
1482
1483again:
1484 err = xenbus_transaction_start(&xbt);
1485 if (err) {
1486 xenbus_dev_fatal(dev, err, "starting transaction");
1487 goto destroy_blkring;
1488 }
1489
Bob Liu86839c52015-06-03 13:40:03 +08001490 if (info->nr_ring_pages == 1) {
1491 err = xenbus_printf(xbt, dev->nodename,
1492 "ring-ref", "%u", info->ring_ref[0]);
1493 if (err) {
1494 message = "writing ring-ref";
1495 goto abort_transaction;
1496 }
1497 } else {
1498 err = xenbus_printf(xbt, dev->nodename,
1499 "ring-page-order", "%u", ring_page_order);
1500 if (err) {
1501 message = "writing ring-page-order";
1502 goto abort_transaction;
1503 }
1504
1505 for (i = 0; i < info->nr_ring_pages; i++) {
1506 char ring_ref_name[RINGREF_NAME_LEN];
1507
1508 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1509 err = xenbus_printf(xbt, dev->nodename, ring_ref_name,
1510 "%u", info->ring_ref[i]);
1511 if (err) {
1512 message = "writing ring-ref";
1513 goto abort_transaction;
1514 }
1515 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001516 }
1517 err = xenbus_printf(xbt, dev->nodename,
1518 "event-channel", "%u", info->evtchn);
1519 if (err) {
1520 message = "writing event-channel";
1521 goto abort_transaction;
1522 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001523 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1524 XEN_IO_PROTO_ABI_NATIVE);
1525 if (err) {
1526 message = "writing protocol";
1527 goto abort_transaction;
1528 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001529 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001530 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001531 if (err)
1532 dev_warn(&dev->dev,
1533 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001534
1535 err = xenbus_transaction_end(xbt, 0);
1536 if (err) {
1537 if (err == -EAGAIN)
1538 goto again;
1539 xenbus_dev_fatal(dev, err, "completing transaction");
1540 goto destroy_blkring;
1541 }
1542
Bob Liu86839c52015-06-03 13:40:03 +08001543 for (i = 0; i < BLK_RING_SIZE(info); i++)
1544 info->shadow[i].req.u.rw.id = i+1;
1545 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001546 xenbus_switch_state(dev, XenbusStateInitialised);
1547
1548 return 0;
1549
1550 abort_transaction:
1551 xenbus_transaction_end(xbt, 1);
1552 if (message)
1553 xenbus_dev_fatal(dev, err, "%s", message);
1554 destroy_blkring:
1555 blkif_free(info, 0);
1556 out:
1557 return err;
1558}
1559
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001560/**
1561 * Entry point to this code when a new device is created. Allocate the basic
1562 * structures and the ring buffer for communication with the backend, and
1563 * inform the backend of the appropriate details for those. Switch to
1564 * Initialised state.
1565 */
1566static int blkfront_probe(struct xenbus_device *dev,
1567 const struct xenbus_device_id *id)
1568{
Bob Liu86839c52015-06-03 13:40:03 +08001569 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001570 struct blkfront_info *info;
1571
1572 /* FIXME: Use dynamic device id if this is not set. */
1573 err = xenbus_scanf(XBT_NIL, dev->nodename,
1574 "virtual-device", "%i", &vdevice);
1575 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001576 /* go looking in the extended area instead */
1577 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1578 "%i", &vdevice);
1579 if (err != 1) {
1580 xenbus_dev_fatal(dev, err, "reading virtual-device");
1581 return err;
1582 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001583 }
1584
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001585 if (xen_hvm_domain()) {
1586 char *type;
1587 int len;
1588 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001589 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001590 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001591
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001592 if (!VDEV_IS_EXTENDED(vdevice))
1593 major = BLKIF_MAJOR(vdevice);
1594 else
1595 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001596
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001597 if (major != XENVBD_MAJOR) {
1598 printk(KERN_INFO
1599 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001600 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001601 return -ENODEV;
1602 }
1603 }
1604 /* do not create a PV cdrom device if we are an HVM guest */
1605 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1606 if (IS_ERR(type))
1607 return -ENODEV;
1608 if (strncmp(type, "cdrom", 5) == 0) {
1609 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001610 return -ENODEV;
1611 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001612 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001613 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001614 info = kzalloc(sizeof(*info), GFP_KERNEL);
1615 if (!info) {
1616 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1617 return -ENOMEM;
1618 }
1619
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001620 mutex_init(&info->mutex);
Steven Noonan34678112012-02-17 12:04:44 -08001621 spin_lock_init(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001622 info->xbdev = dev;
1623 info->vdevice = vdevice;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001624 INIT_LIST_HEAD(&info->grants);
1625 INIT_LIST_HEAD(&info->indirect_pages);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001626 info->persistent_gnts_c = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001627 info->connected = BLKIF_STATE_DISCONNECTED;
1628 INIT_WORK(&info->work, blkif_restart_queue);
1629
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001630 /* Front end dir is a number, which is used as the id. */
1631 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001632 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001633
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001634 return 0;
1635}
1636
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001637static void split_bio_end(struct bio *bio)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001638{
1639 struct split_bio *split_bio = bio->bi_private;
1640
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001641 if (atomic_dec_and_test(&split_bio->pending)) {
1642 split_bio->bio->bi_phys_segments = 0;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001643 split_bio->bio->bi_error = bio->bi_error;
1644 bio_endio(split_bio->bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001645 kfree(split_bio);
1646 }
1647 bio_put(bio);
1648}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001649
1650static int blkif_recover(struct blkfront_info *info)
1651{
1652 int i;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001653 struct request *req, *n;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001654 struct blk_shadow *copy;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001655 int rc;
1656 struct bio *bio, *cloned_bio;
1657 struct bio_list bio_list, merge_bio;
1658 unsigned int segs, offset;
1659 int pending, size;
1660 struct split_bio *split_bio;
1661 struct list_head requests;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001662
1663 /* Stage 1: Make a safe copy of the shadow state. */
Mihnea Dobrescu-Balaur29d0b212013-03-11 13:23:36 +02001664 copy = kmemdup(info->shadow, sizeof(info->shadow),
Ian Campbella144ff02008-06-17 10:47:08 +02001665 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001666 if (!copy)
1667 return -ENOMEM;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001668
1669 /* Stage 2: Set up free list. */
1670 memset(&info->shadow, 0, sizeof(info->shadow));
Bob Liu86839c52015-06-03 13:40:03 +08001671 for (i = 0; i < BLK_RING_SIZE(info); i++)
Konrad Rzeszutek Wilk97e36832011-10-12 12:12:36 -04001672 info->shadow[i].req.u.rw.id = i+1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001673 info->shadow_free = info->ring.req_prod_pvt;
Bob Liu86839c52015-06-03 13:40:03 +08001674 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001675
Bob Liud50babb2015-07-22 14:40:08 +08001676 rc = blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001677 if (rc) {
1678 kfree(copy);
1679 return rc;
1680 }
1681
1682 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
1683 blk_queue_max_segments(info->rq, segs);
1684 bio_list_init(&bio_list);
1685 INIT_LIST_HEAD(&requests);
Bob Liu86839c52015-06-03 13:40:03 +08001686 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001687 /* Not in use? */
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -04001688 if (!copy[i].request)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001689 continue;
1690
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001691 /*
1692 * Get the bios in the request so we can re-queue them.
1693 */
1694 if (copy[i].request->cmd_flags &
1695 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1696 /*
1697 * Flush operations don't contain bios, so
1698 * we need to requeue the whole request
1699 */
1700 list_add(&copy[i].request->queuelist, &requests);
1701 continue;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001702 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001703 merge_bio.head = copy[i].request->bio;
1704 merge_bio.tail = copy[i].request->biotail;
1705 bio_list_merge(&bio_list, &merge_bio);
1706 copy[i].request->bio = NULL;
Roger Pau Monne3bb8c982015-02-02 11:28:21 +00001707 blk_end_request_all(copy[i].request, 0);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001708 }
1709
1710 kfree(copy);
1711
1712 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1713
Steven Noonan34678112012-02-17 12:04:44 -08001714 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001715
1716 /* Now safe for us to use the shared ring */
1717 info->connected = BLKIF_STATE_CONNECTED;
1718
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001719 /* Kick any other new requests queued since we resumed */
1720 kick_pending_request_queues(info);
1721
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001722 list_for_each_entry_safe(req, n, &requests, queuelist) {
1723 /* Requeue pending requests (flush or discard) */
1724 list_del_init(&req->queuelist);
1725 BUG_ON(req->nr_phys_segments > segs);
Bob Liu907c3eb2015-07-13 17:55:24 +08001726 blk_mq_requeue_request(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001727 }
Steven Noonan34678112012-02-17 12:04:44 -08001728 spin_unlock_irq(&info->io_lock);
Bob Liu907c3eb2015-07-13 17:55:24 +08001729 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001730
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001731 while ((bio = bio_list_pop(&bio_list)) != NULL) {
1732 /* Traverse the list of pending bios and re-queue them */
1733 if (bio_segments(bio) > segs) {
1734 /*
1735 * This bio has more segments than what we can
1736 * handle, we have to split it.
1737 */
1738 pending = (bio_segments(bio) + segs - 1) / segs;
1739 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
1740 BUG_ON(split_bio == NULL);
1741 atomic_set(&split_bio->pending, pending);
1742 split_bio->bio = bio;
1743 for (i = 0; i < pending; i++) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001744 offset = (i * segs * XEN_PAGE_SIZE) >> 9;
1745 size = min((unsigned int)(segs * XEN_PAGE_SIZE) >> 9,
Kent Overstreet4f024f32013-10-11 15:44:27 -07001746 (unsigned int)bio_sectors(bio) - offset);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001747 cloned_bio = bio_clone(bio, GFP_NOIO);
1748 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07001749 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001750 cloned_bio->bi_private = split_bio;
1751 cloned_bio->bi_end_io = split_bio_end;
1752 submit_bio(cloned_bio->bi_rw, cloned_bio);
1753 }
1754 /*
1755 * Now we have to wait for all those smaller bios to
1756 * end, so we can also end the "parent" bio.
1757 */
1758 continue;
1759 }
1760 /* We don't need to split this bio */
1761 submit_bio(bio->bi_rw, bio);
1762 }
1763
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001764 return 0;
1765}
1766
1767/**
1768 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1769 * driver restart. We tear down our blkif structure and recreate it, but
1770 * leave the device-layer structures intact so that this is transparent to the
1771 * rest of the kernel.
1772 */
1773static int blkfront_resume(struct xenbus_device *dev)
1774{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001775 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001776 int err;
1777
1778 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1779
1780 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1781
Ian Campbell203fd612009-12-04 15:33:54 +00001782 err = talk_to_blkback(dev, info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001783
1784 /*
1785 * We have to wait for the backend to switch to
1786 * connected state, since we want to read which
1787 * features it supports.
1788 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001789
1790 return err;
1791}
1792
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001793static void
1794blkfront_closing(struct blkfront_info *info)
1795{
1796 struct xenbus_device *xbdev = info->xbdev;
1797 struct block_device *bdev = NULL;
1798
1799 mutex_lock(&info->mutex);
1800
1801 if (xbdev->state == XenbusStateClosing) {
1802 mutex_unlock(&info->mutex);
1803 return;
1804 }
1805
1806 if (info->gd)
1807 bdev = bdget_disk(info->gd, 0);
1808
1809 mutex_unlock(&info->mutex);
1810
1811 if (!bdev) {
1812 xenbus_frontend_closed(xbdev);
1813 return;
1814 }
1815
1816 mutex_lock(&bdev->bd_mutex);
1817
Daniel Stodden7b32d102010-04-30 22:01:23 +00001818 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001819 xenbus_dev_error(xbdev, -EBUSY,
1820 "Device in use; refusing to close");
1821 xenbus_switch_state(xbdev, XenbusStateClosing);
1822 } else {
1823 xlvbd_release_gendisk(info);
1824 xenbus_frontend_closed(xbdev);
1825 }
1826
1827 mutex_unlock(&bdev->bd_mutex);
1828 bdput(bdev);
1829}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001830
Li Dongyanged30bf32011-09-01 18:39:09 +08001831static void blkfront_setup_discard(struct blkfront_info *info)
1832{
1833 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08001834 unsigned int discard_granularity;
1835 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001836 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001837
Olaf Hering1c8cad62014-05-21 16:32:40 +02001838 info->feature_discard = 1;
1839 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1840 "discard-granularity", "%u", &discard_granularity,
1841 "discard-alignment", "%u", &discard_alignment,
1842 NULL);
1843 if (!err) {
1844 info->discard_granularity = discard_granularity;
1845 info->discard_alignment = discard_alignment;
1846 }
1847 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1848 "discard-secure", "%d", &discard_secure,
1849 NULL);
1850 if (!err)
1851 info->feature_secdiscard = !!discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08001852}
1853
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001854static int blkfront_setup_indirect(struct blkfront_info *info)
1855{
Julien Grallc004a6f2015-07-22 16:44:54 +01001856 unsigned int psegs, grants;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001857 int err, i;
1858
Bob Liud50babb2015-07-22 14:40:08 +08001859 if (info->max_indirect_segments == 0)
Julien Grallc004a6f2015-07-22 16:44:54 +01001860 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liud50babb2015-07-22 14:40:08 +08001861 else
Julien Grallc004a6f2015-07-22 16:44:54 +01001862 grants = info->max_indirect_segments;
1863 psegs = grants / GRANTS_PER_PSEG;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001864
Julien Grallc004a6f2015-07-22 16:44:54 +01001865 err = fill_grant_buffer(info,
1866 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001867 if (err)
1868 goto out_of_memory;
1869
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001870 if (!info->feature_persistent && info->max_indirect_segments) {
1871 /*
1872 * We are using indirect descriptors but not persistent
1873 * grants, we need to allocate a set of pages that can be
1874 * used for mapping indirect grefs
1875 */
Julien Grallc004a6f2015-07-22 16:44:54 +01001876 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001877
1878 BUG_ON(!list_empty(&info->indirect_pages));
1879 for (i = 0; i < num; i++) {
1880 struct page *indirect_page = alloc_page(GFP_NOIO);
1881 if (!indirect_page)
1882 goto out_of_memory;
1883 list_add(&indirect_page->lru, &info->indirect_pages);
1884 }
1885 }
1886
Bob Liu86839c52015-06-03 13:40:03 +08001887 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001888 info->shadow[i].grants_used = kzalloc(
Julien Grallc004a6f2015-07-22 16:44:54 +01001889 sizeof(info->shadow[i].grants_used[0]) * grants,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001890 GFP_NOIO);
Julien Grallc004a6f2015-07-22 16:44:54 +01001891 info->shadow[i].sg = kzalloc(sizeof(info->shadow[i].sg[0]) * psegs, GFP_NOIO);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001892 if (info->max_indirect_segments)
1893 info->shadow[i].indirect_grants = kzalloc(
1894 sizeof(info->shadow[i].indirect_grants[0]) *
Julien Grallc004a6f2015-07-22 16:44:54 +01001895 INDIRECT_GREFS(grants),
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001896 GFP_NOIO);
1897 if ((info->shadow[i].grants_used == NULL) ||
Roger Pau Monneb7649152013-05-02 10:58:50 +02001898 (info->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001899 (info->max_indirect_segments &&
1900 (info->shadow[i].indirect_grants == NULL)))
1901 goto out_of_memory;
Julien Grallc004a6f2015-07-22 16:44:54 +01001902 sg_init_table(info->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001903 }
1904
1905
1906 return 0;
1907
1908out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08001909 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001910 kfree(info->shadow[i].grants_used);
1911 info->shadow[i].grants_used = NULL;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001912 kfree(info->shadow[i].sg);
1913 info->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001914 kfree(info->shadow[i].indirect_grants);
1915 info->shadow[i].indirect_grants = NULL;
1916 }
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001917 if (!list_empty(&info->indirect_pages)) {
1918 struct page *indirect_page, *n;
1919 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
1920 list_del(&indirect_page->lru);
1921 __free_page(indirect_page);
1922 }
1923 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001924 return -ENOMEM;
1925}
1926
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001927/*
Bob Liud50babb2015-07-22 14:40:08 +08001928 * Gather all backend feature-*
1929 */
1930static int blkfront_gather_backend_features(struct blkfront_info *info)
1931{
1932 int err;
1933 int barrier, flush, discard, persistent;
1934 unsigned int indirect_segments;
1935
1936 info->feature_flush = 0;
1937
1938 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1939 "feature-barrier", "%d", &barrier,
1940 NULL);
1941
1942 /*
1943 * If there's no "feature-barrier" defined, then it means
1944 * we're dealing with a very old backend which writes
1945 * synchronously; nothing to do.
1946 *
1947 * If there are barriers, then we use flush.
1948 */
1949 if (!err && barrier)
1950 info->feature_flush = REQ_FLUSH | REQ_FUA;
1951 /*
1952 * And if there is "feature-flush-cache" use that above
1953 * barriers.
1954 */
1955 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1956 "feature-flush-cache", "%d", &flush,
1957 NULL);
1958
1959 if (!err && flush)
1960 info->feature_flush = REQ_FLUSH;
1961
1962 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1963 "feature-discard", "%d", &discard,
1964 NULL);
1965
1966 if (!err && discard)
1967 blkfront_setup_discard(info);
1968
1969 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1970 "feature-persistent", "%u", &persistent,
1971 NULL);
1972 if (err)
1973 info->feature_persistent = 0;
1974 else
1975 info->feature_persistent = persistent;
1976
1977 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1978 "feature-max-indirect-segments", "%u", &indirect_segments,
1979 NULL);
1980 if (err)
1981 info->max_indirect_segments = 0;
1982 else
1983 info->max_indirect_segments = min(indirect_segments,
1984 xen_blkif_max_segments);
1985
1986 return blkfront_setup_indirect(info);
1987}
1988
1989/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001990 * Invoked when the backend is finally 'ready' (and has told produced
1991 * the details about the physical device - #sectors, size, etc).
1992 */
1993static void blkfront_connect(struct blkfront_info *info)
1994{
1995 unsigned long long sectors;
1996 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001997 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001998 unsigned int binfo;
1999 int err;
2000
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002001 switch (info->connected) {
2002 case BLKIF_STATE_CONNECTED:
2003 /*
2004 * Potentially, the back-end may be signalling
2005 * a capacity change; update the capacity.
2006 */
2007 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2008 "sectors", "%Lu", &sectors);
2009 if (XENBUS_EXIST_ERR(err))
2010 return;
2011 printk(KERN_INFO "Setting capacity to %Lu\n",
2012 sectors);
2013 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07002014 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002015
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002016 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002017 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002018 /*
2019 * If we are recovering from suspension, we need to wait
2020 * for the backend to announce it's features before
2021 * reconnecting, at least we need to know if the backend
2022 * supports indirect descriptors, and how many.
2023 */
2024 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002025 return;
2026
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002027 default:
2028 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002029 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002030
2031 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2032 __func__, info->xbdev->otherend);
2033
2034 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2035 "sectors", "%llu", &sectors,
2036 "info", "%u", &binfo,
2037 "sector-size", "%lu", &sector_size,
2038 NULL);
2039 if (err) {
2040 xenbus_dev_fatal(info->xbdev, err,
2041 "reading backend fields at %s",
2042 info->xbdev->otherend);
2043 return;
2044 }
2045
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002046 /*
2047 * physcial-sector-size is a newer field, so old backends may not
2048 * provide this. Assume physical sector size to be the same as
2049 * sector_size in that case.
2050 */
2051 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2052 "physical-sector-size", "%u", &physical_sector_size);
2053 if (err != 1)
2054 physical_sector_size = sector_size;
2055
Bob Liud50babb2015-07-22 14:40:08 +08002056 err = blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002057 if (err) {
2058 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2059 info->xbdev->otherend);
2060 return;
2061 }
2062
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002063 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2064 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002065 if (err) {
2066 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2067 info->xbdev->otherend);
2068 return;
2069 }
2070
2071 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2072
2073 /* Kick pending requests. */
Steven Noonan34678112012-02-17 12:04:44 -08002074 spin_lock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002075 info->connected = BLKIF_STATE_CONNECTED;
2076 kick_pending_request_queues(info);
Steven Noonan34678112012-02-17 12:04:44 -08002077 spin_unlock_irq(&info->io_lock);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002078
2079 add_disk(info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07002080
2081 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002082}
2083
2084/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002085 * Callback received when the backend's state changes.
2086 */
Ian Campbell203fd612009-12-04 15:33:54 +00002087static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002088 enum xenbus_state backend_state)
2089{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002090 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002091
Ian Campbell203fd612009-12-04 15:33:54 +00002092 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002093
2094 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002095 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002096 if (dev->state != XenbusStateInitialising)
2097 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002098 if (talk_to_blkback(dev, info)) {
2099 kfree(info);
2100 dev_set_drvdata(&dev->dev, NULL);
2101 break;
2102 }
2103 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002104 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002105 case XenbusStateReconfiguring:
2106 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002107 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002108 break;
2109
2110 case XenbusStateConnected:
2111 blkfront_connect(info);
2112 break;
2113
David Vrabel36613712014-02-04 18:53:56 +00002114 case XenbusStateClosed:
2115 if (dev->state == XenbusStateClosed)
2116 break;
2117 /* Missed the backend's Closing state -- fallthrough */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002118 case XenbusStateClosing:
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002119 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002120 break;
2121 }
2122}
2123
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002124static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002125{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002126 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2127 struct block_device *bdev = NULL;
2128 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002129
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002130 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002131
2132 blkif_free(info, 0);
2133
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002134 mutex_lock(&info->mutex);
2135
2136 disk = info->gd;
2137 if (disk)
2138 bdev = bdget_disk(disk, 0);
2139
2140 info->xbdev = NULL;
2141 mutex_unlock(&info->mutex);
2142
2143 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02002144 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002145 return 0;
2146 }
2147
2148 /*
2149 * The xbdev was removed before we reached the Closed
2150 * state. See if it's safe to remove the disk. If the bdev
2151 * isn't closed yet, we let release take care of it.
2152 */
2153
2154 mutex_lock(&bdev->bd_mutex);
2155 info = disk->private_data;
2156
Daniel Stoddend54142c2010-08-07 18:51:21 +02002157 dev_warn(disk_to_dev(disk),
2158 "%s was hot-unplugged, %d stale handles\n",
2159 xbdev->nodename, bdev->bd_openers);
2160
Daniel Stodden7b32d102010-04-30 22:01:23 +00002161 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002162 xlvbd_release_gendisk(info);
2163 disk->private_data = NULL;
2164 kfree(info);
2165 }
2166
2167 mutex_unlock(&bdev->bd_mutex);
2168 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002169
2170 return 0;
2171}
2172
Christian Limpach1d78d702008-04-02 10:54:04 -07002173static int blkfront_is_ready(struct xenbus_device *dev)
2174{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002175 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002176
Jan Beulich5d7ed202010-08-07 18:31:12 +02002177 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002178}
2179
Al Viroa63c8482008-03-02 10:23:47 -05002180static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002181{
Daniel Stodden13961742010-08-07 18:36:53 +02002182 struct gendisk *disk = bdev->bd_disk;
2183 struct blkfront_info *info;
2184 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002185
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002186 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002187
Daniel Stodden13961742010-08-07 18:36:53 +02002188 info = disk->private_data;
2189 if (!info) {
2190 /* xbdev gone */
2191 err = -ERESTARTSYS;
2192 goto out;
2193 }
2194
2195 mutex_lock(&info->mutex);
2196
2197 if (!info->gd)
2198 /* xbdev is closed */
2199 err = -ERESTARTSYS;
2200
2201 mutex_unlock(&info->mutex);
2202
Daniel Stodden13961742010-08-07 18:36:53 +02002203out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002204 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002205 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002206}
2207
Al Virodb2a1442013-05-05 21:52:57 -04002208static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002209{
Al Viroa63c8482008-03-02 10:23:47 -05002210 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002211 struct block_device *bdev;
2212 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002213
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002214 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002215
2216 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002217
Felipe Pena2f089cb2013-11-09 13:36:09 -02002218 if (!bdev) {
2219 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2220 goto out_mutex;
2221 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002222 if (bdev->bd_openers)
2223 goto out;
2224
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002225 /*
2226 * Check if we have been instructed to close. We will have
2227 * deferred this request, because the bdev was still open.
2228 */
2229
2230 mutex_lock(&info->mutex);
2231 xbdev = info->xbdev;
2232
2233 if (xbdev && xbdev->state == XenbusStateClosing) {
2234 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002235 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002236 xlvbd_release_gendisk(info);
2237 xenbus_frontend_closed(info->xbdev);
2238 }
2239
2240 mutex_unlock(&info->mutex);
2241
2242 if (!xbdev) {
2243 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002244 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002245 xlvbd_release_gendisk(info);
2246 disk->private_data = NULL;
2247 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002248 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002249
Jens Axboea4cc14e2010-08-08 21:50:05 -04002250out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002251 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002252out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002253 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002254}
2255
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002256static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002257{
2258 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002259 .open = blkif_open,
2260 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002261 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002262 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002263};
2264
2265
Márton Némethec9c42e2010-01-10 13:39:52 +01002266static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002267 { "vbd" },
2268 { "" }
2269};
2270
David Vrabel95afae42014-09-08 17:30:41 +01002271static struct xenbus_driver blkfront_driver = {
2272 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002273 .probe = blkfront_probe,
2274 .remove = blkfront_remove,
2275 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002276 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002277 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002278};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002279
2280static int __init xlblk_init(void)
2281{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002282 int ret;
2283
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002284 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002285 return -ENODEV;
2286
Bob Liu86839c52015-06-03 13:40:03 +08002287 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_PAGE_ORDER) {
2288 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
2289 xen_blkif_max_ring_order, XENBUS_MAX_RING_PAGE_ORDER);
2290 xen_blkif_max_ring_order = 0;
2291 }
2292
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05002293 if (!xen_has_pv_disk_devices())
Igor Mammedovb9136d22012-03-21 15:08:38 +01002294 return -ENODEV;
2295
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002296 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2297 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2298 XENVBD_MAJOR, DEV_NAME);
2299 return -ENODEV;
2300 }
2301
Jan Beulich73db1442011-12-22 09:08:13 +00002302 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002303 if (ret) {
2304 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2305 return ret;
2306 }
2307
2308 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002309}
2310module_init(xlblk_init);
2311
2312
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002313static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002314{
Jan Beulich86050672012-04-05 16:04:52 +01002315 xenbus_unregister_driver(&blkfront_driver);
2316 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2317 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002318}
2319module_exit(xlblk_exit);
2320
2321MODULE_DESCRIPTION("Xen virtual block device frontend");
2322MODULE_LICENSE("GPL");
2323MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002324MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002325MODULE_ALIAS("xenblk");