blob: 81ffc59d05c90e7843747a0d9cd2c33fa0bba41d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2003 Sistina Software
Heinz Mauelshagen891ce202007-05-09 02:33:00 -07003 * Copyright (C) 2006 Red Hat GmbH
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is released under the GPL.
6 */
7
Mike Snitzer4cc96132016-05-12 16:28:10 -04008#include "dm-core.h"
Mikulas Patocka952b3552009-12-10 23:51:57 +00009
Mikulas Patocka586e80e2008-10-21 17:44:59 +010010#include <linux/device-mapper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/bio.h>
Joe Thornber10f1d5d2014-06-27 15:29:04 -040013#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/mempool.h>
15#include <linux/module.h>
16#include <linux/sched.h>
17#include <linux/slab.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010018#include <linux/dm-io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Mikulas Patockaf1e53982009-12-10 23:51:58 +000020#define DM_MSG_PREFIX "io"
21
22#define DM_IO_MAX_REGIONS BITS_PER_LONG
23
Heinz Mauelshagen891ce202007-05-09 02:33:00 -070024struct dm_io_client {
Kent Overstreet6f1c8192018-05-20 18:25:53 -040025 mempool_t pool;
26 struct bio_set bios;
Heinz Mauelshagen891ce202007-05-09 02:33:00 -070027};
28
Mikulas Patockaf1e53982009-12-10 23:51:58 +000029/*
30 * Aligning 'struct io' reduces the number of bits required to store
31 * its address. Refer to store_io_and_region_in_bio() below.
32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct io {
Alasdair G Kergone01fd7e2008-04-24 21:43:14 +010034 unsigned long error_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 atomic_t count;
Heinz Mauelshagen891ce202007-05-09 02:33:00 -070036 struct dm_io_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 io_notify_fn callback;
38 void *context;
Mikulas Patockabb91bc72011-08-02 12:32:01 +010039 void *vma_invalidate_address;
40 unsigned long vma_invalidate_size;
Mikulas Patockaf1e53982009-12-10 23:51:58 +000041} __attribute__((aligned(DM_IO_MAX_REGIONS)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Mikulas Patocka952b3552009-12-10 23:51:57 +000043static struct kmem_cache *_dm_io_cache;
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070046 * Create a client with mempool and bioset.
47 */
Mikulas Patockabda8efe2011-05-29 13:03:09 +010048struct dm_io_client *dm_io_client_create(void)
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070049{
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070050 struct dm_io_client *client;
Mike Snitzere8603132013-09-12 18:06:12 -040051 unsigned min_ios = dm_get_reserved_bio_based_ios();
Kent Overstreet6f1c8192018-05-20 18:25:53 -040052 int ret;
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070053
Kent Overstreetd3775352018-06-05 05:26:33 -040054 client = kzalloc(sizeof(*client), GFP_KERNEL);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070055 if (!client)
56 return ERR_PTR(-ENOMEM);
57
Kent Overstreet6f1c8192018-05-20 18:25:53 -040058 ret = mempool_init_slab_pool(&client->pool, min_ios, _dm_io_cache);
59 if (ret)
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070060 goto bad;
61
Kent Overstreet6f1c8192018-05-20 18:25:53 -040062 ret = bioset_init(&client->bios, min_ios, 0, BIOSET_NEED_BVECS);
63 if (ret)
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070064 goto bad;
65
66 return client;
67
68 bad:
Kent Overstreet6f1c8192018-05-20 18:25:53 -040069 mempool_exit(&client->pool);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070070 kfree(client);
Kent Overstreet6f1c8192018-05-20 18:25:53 -040071 return ERR_PTR(ret);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070072}
73EXPORT_SYMBOL(dm_io_client_create);
74
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070075void dm_io_client_destroy(struct dm_io_client *client)
76{
Kent Overstreet6f1c8192018-05-20 18:25:53 -040077 mempool_exit(&client->pool);
78 bioset_exit(&client->bios);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -070079 kfree(client);
80}
81EXPORT_SYMBOL(dm_io_client_destroy);
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*-----------------------------------------------------------------
84 * We need to keep track of which region a bio is doing io for.
Mikulas Patockaf1e53982009-12-10 23:51:58 +000085 * To avoid a memory allocation to store just 5 or 6 bits, we
86 * ensure the 'struct io' pointer is aligned so enough low bits are
87 * always zero and then combine it with the region number directly in
88 * bi_private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *---------------------------------------------------------------*/
Mikulas Patockaf1e53982009-12-10 23:51:58 +000090static void store_io_and_region_in_bio(struct bio *bio, struct io *io,
91 unsigned region)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Mikulas Patockaf1e53982009-12-10 23:51:58 +000093 if (unlikely(!IS_ALIGNED((unsigned long)io, DM_IO_MAX_REGIONS))) {
94 DMCRIT("Unaligned struct io pointer %p", io);
95 BUG();
96 }
97
98 bio->bi_private = (void *)((unsigned long)io | region);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000101static void retrieve_io_and_region_from_bio(struct bio *bio, struct io **io,
102 unsigned *region)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000104 unsigned long val = (unsigned long)bio->bi_private;
105
106 *io = (void *)(val & -(unsigned long)DM_IO_MAX_REGIONS);
107 *region = val & (DM_IO_MAX_REGIONS - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110/*-----------------------------------------------------------------
111 * We need an io object to keep track of the number of bios that
112 * have been dispatched for a particular io.
113 *---------------------------------------------------------------*/
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400114static void complete_io(struct io *io)
115{
116 unsigned long error_bits = io->error_bits;
117 io_notify_fn fn = io->callback;
118 void *context = io->context;
119
120 if (io->vma_invalidate_size)
121 invalidate_kernel_vmap_range(io->vma_invalidate_address,
122 io->vma_invalidate_size);
123
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400124 mempool_free(io, &io->client->pool);
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400125 fn(error_bits, context);
126}
127
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200128static void dec_count(struct io *io, unsigned int region, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Tejun Heod87f4c12010-09-03 11:56:19 +0200130 if (error)
Alasdair G Kergone01fd7e2008-04-24 21:43:14 +0100131 set_bit(region, &io->error_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400133 if (atomic_dec_and_test(&io->count))
134 complete_io(io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200137static void endio(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Heinz Mauelshagenc897feb2007-05-09 02:33:00 -0700139 struct io *io;
140 unsigned region;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200141 blk_status_t error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200143 if (bio->bi_status && bio_data_dir(bio) == READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 zero_fill_bio(bio);
145
Heinz Mauelshagenc897feb2007-05-09 02:33:00 -0700146 /*
147 * The bio destructor in bio_put() may use the io object.
148 */
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000149 retrieve_io_and_region_from_bio(bio, &io, &region);
Heinz Mauelshagenc897feb2007-05-09 02:33:00 -0700150
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200151 error = bio->bi_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 bio_put(bio);
153
Sasha Levin9b81c842015-08-10 19:05:18 -0400154 dec_count(io, region, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157/*-----------------------------------------------------------------
158 * These little objects provide an abstraction for getting a new
159 * destination page for io.
160 *---------------------------------------------------------------*/
161struct dpages {
162 void (*get_page)(struct dpages *dp,
163 struct page **p, unsigned long *len, unsigned *offset);
164 void (*next_page)(struct dpages *dp);
165
Ming Leicacc7b02016-11-11 20:05:35 +0800166 union {
167 unsigned context_u;
168 struct bvec_iter context_bi;
169 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 void *context_ptr;
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100171
172 void *vma_invalidate_address;
173 unsigned long vma_invalidate_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
176/*
177 * Functions for getting the pages from a list.
178 */
179static void list_get_page(struct dpages *dp,
180 struct page **p, unsigned long *len, unsigned *offset)
181{
182 unsigned o = dp->context_u;
183 struct page_list *pl = (struct page_list *) dp->context_ptr;
184
185 *p = pl->page;
186 *len = PAGE_SIZE - o;
187 *offset = o;
188}
189
190static void list_next_page(struct dpages *dp)
191{
192 struct page_list *pl = (struct page_list *) dp->context_ptr;
193 dp->context_ptr = pl->next;
194 dp->context_u = 0;
195}
196
197static void list_dp_init(struct dpages *dp, struct page_list *pl, unsigned offset)
198{
199 dp->get_page = list_get_page;
200 dp->next_page = list_next_page;
201 dp->context_u = offset;
202 dp->context_ptr = pl;
203}
204
205/*
206 * Functions for getting the pages from a bvec.
207 */
Mikulas Patockad73f9902014-02-12 16:37:30 -0500208static void bio_get_page(struct dpages *dp, struct page **p,
209 unsigned long *len, unsigned *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Ming Leicacc7b02016-11-11 20:05:35 +0800211 struct bio_vec bvec = bvec_iter_bvec((struct bio_vec *)dp->context_ptr,
212 dp->context_bi);
213
214 *p = bvec.bv_page;
215 *len = bvec.bv_len;
216 *offset = bvec.bv_offset;
217
218 /* avoid figuring it out again in bio_next_page() */
219 dp->context_bi.bi_sector = (sector_t)bvec.bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Kent Overstreet003b5c52013-10-11 15:45:43 -0700222static void bio_next_page(struct dpages *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Ming Leicacc7b02016-11-11 20:05:35 +0800224 unsigned int len = (unsigned int)dp->context_bi.bi_sector;
225
226 bvec_iter_advance((struct bio_vec *)dp->context_ptr,
227 &dp->context_bi, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Kent Overstreet003b5c52013-10-11 15:45:43 -0700230static void bio_dp_init(struct dpages *dp, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Kent Overstreet003b5c52013-10-11 15:45:43 -0700232 dp->get_page = bio_get_page;
233 dp->next_page = bio_next_page;
Ming Leicacc7b02016-11-11 20:05:35 +0800234
235 /*
236 * We just use bvec iterator to retrieve pages, so it is ok to
237 * access the bvec table directly here
238 */
239 dp->context_ptr = bio->bi_io_vec;
240 dp->context_bi = bio->bi_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700243/*
244 * Functions for getting the pages from a VMA.
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246static void vm_get_page(struct dpages *dp,
247 struct page **p, unsigned long *len, unsigned *offset)
248{
249 *p = vmalloc_to_page(dp->context_ptr);
250 *offset = dp->context_u;
251 *len = PAGE_SIZE - dp->context_u;
252}
253
254static void vm_next_page(struct dpages *dp)
255{
256 dp->context_ptr += PAGE_SIZE - dp->context_u;
257 dp->context_u = 0;
258}
259
260static void vm_dp_init(struct dpages *dp, void *data)
261{
262 dp->get_page = vm_get_page;
263 dp->next_page = vm_next_page;
Al Viro93bbf582016-01-02 13:30:54 -0500264 dp->context_u = offset_in_page(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 dp->context_ptr = data;
266}
267
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700268/*
269 * Functions for getting the pages from kernel memory.
270 */
271static void km_get_page(struct dpages *dp, struct page **p, unsigned long *len,
272 unsigned *offset)
273{
274 *p = virt_to_page(dp->context_ptr);
275 *offset = dp->context_u;
276 *len = PAGE_SIZE - dp->context_u;
277}
278
279static void km_next_page(struct dpages *dp)
280{
281 dp->context_ptr += PAGE_SIZE - dp->context_u;
282 dp->context_u = 0;
283}
284
285static void km_dp_init(struct dpages *dp, void *data)
286{
287 dp->get_page = km_get_page;
288 dp->next_page = km_next_page;
Al Viro93bbf582016-01-02 13:30:54 -0500289 dp->context_u = offset_in_page(data);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700290 dp->context_ptr = data;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*-----------------------------------------------------------------
294 * IO routines that accept a list of pages.
295 *---------------------------------------------------------------*/
Mike Christiee6047142016-06-05 14:32:04 -0500296static void do_region(int op, int op_flags, unsigned region,
297 struct dm_io_region *where, struct dpages *dp,
298 struct io *io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct bio *bio;
301 struct page *page;
302 unsigned long len;
303 unsigned offset;
304 unsigned num_bvecs;
305 sector_t remaining = where->count;
Milan Broz0c535e02012-03-07 19:09:37 +0000306 struct request_queue *q = bdev_get_queue(where->bdev);
Mike Snitzer70d6c402012-12-21 20:23:37 +0000307 unsigned short logical_block_size = queue_logical_block_size(q);
308 sector_t num_sectors;
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800309 unsigned int uninitialized_var(special_cmd_max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800311 /*
312 * Reject unsupported discard and write same requests.
313 */
Mike Christiee6047142016-06-05 14:32:04 -0500314 if (op == REQ_OP_DISCARD)
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800315 special_cmd_max_sectors = q->limits.max_discard_sectors;
Christoph Hellwigac62d622017-04-05 19:21:05 +0200316 else if (op == REQ_OP_WRITE_ZEROES)
317 special_cmd_max_sectors = q->limits.max_write_zeroes_sectors;
Mike Christiee6047142016-06-05 14:32:04 -0500318 else if (op == REQ_OP_WRITE_SAME)
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800319 special_cmd_max_sectors = q->limits.max_write_same_sectors;
Christoph Hellwigac62d622017-04-05 19:21:05 +0200320 if ((op == REQ_OP_DISCARD || op == REQ_OP_WRITE_ZEROES ||
Mike Snitzerfeb76952017-06-20 19:14:30 -0400321 op == REQ_OP_WRITE_SAME) && special_cmd_max_sectors == 0) {
322 atomic_inc(&io->count);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200323 dec_count(io, region, BLK_STS_NOTSUPP);
Darrick J. Wong37527b82015-02-13 11:05:37 -0800324 return;
325 }
326
Mikulas Patocka12fc0f42009-12-10 23:52:22 +0000327 /*
Mike Christiee6047142016-06-05 14:32:04 -0500328 * where->count may be zero if op holds a flush and we need to
Tejun Heod87f4c12010-09-03 11:56:19 +0200329 * send a zero-sized flush.
Mikulas Patocka12fc0f42009-12-10 23:52:22 +0000330 */
331 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /*
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000333 * Allocate a suitably sized-bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
Christoph Hellwig0f5d6902017-04-05 19:21:04 +0200335 switch (op) {
336 case REQ_OP_DISCARD:
Christoph Hellwigac62d622017-04-05 19:21:05 +0200337 case REQ_OP_WRITE_ZEROES:
Christoph Hellwig0f5d6902017-04-05 19:21:04 +0200338 num_bvecs = 0;
339 break;
340 case REQ_OP_WRITE_SAME:
Milan Broz0c535e02012-03-07 19:09:37 +0000341 num_bvecs = 1;
Christoph Hellwig0f5d6902017-04-05 19:21:04 +0200342 break;
343 default:
Kent Overstreetb54ffb72015-05-19 14:31:01 +0200344 num_bvecs = min_t(int, BIO_MAX_PAGES,
Milan Broz0c535e02012-03-07 19:09:37 +0000345 dm_sector_div_up(remaining, (PAGE_SIZE >> SECTOR_SHIFT)));
Christoph Hellwig0f5d6902017-04-05 19:21:04 +0200346 }
Milan Broz0c535e02012-03-07 19:09:37 +0000347
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400348 bio = bio_alloc_bioset(GFP_NOIO, num_bvecs, &io->client->bios);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700349 bio->bi_iter.bi_sector = where->sector + (where->count - remaining);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200350 bio_set_dev(bio, where->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 bio->bi_end_io = endio;
Mike Christiee6047142016-06-05 14:32:04 -0500352 bio_set_op_attrs(bio, op, op_flags);
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000353 store_io_and_region_in_bio(bio, io, region);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Christoph Hellwigac62d622017-04-05 19:21:05 +0200355 if (op == REQ_OP_DISCARD || op == REQ_OP_WRITE_ZEROES) {
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800356 num_sectors = min_t(sector_t, special_cmd_max_sectors, remaining);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700357 bio->bi_iter.bi_size = num_sectors << SECTOR_SHIFT;
Mike Snitzer70d6c402012-12-21 20:23:37 +0000358 remaining -= num_sectors;
Mike Christiee6047142016-06-05 14:32:04 -0500359 } else if (op == REQ_OP_WRITE_SAME) {
Mike Snitzer70d6c402012-12-21 20:23:37 +0000360 /*
361 * WRITE SAME only uses a single page.
362 */
363 dp->get_page(dp, &page, &len, &offset);
364 bio_add_page(bio, page, logical_block_size, offset);
Darrick J. Wonge5db2982015-02-27 10:44:38 -0800365 num_sectors = min_t(sector_t, special_cmd_max_sectors, remaining);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700366 bio->bi_iter.bi_size = num_sectors << SECTOR_SHIFT;
Mike Snitzer70d6c402012-12-21 20:23:37 +0000367
368 offset = 0;
369 remaining -= num_sectors;
370 dp->next_page(dp);
Milan Broz0c535e02012-03-07 19:09:37 +0000371 } else while (remaining) {
372 /*
373 * Try and add as many pages as possible.
374 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 dp->get_page(dp, &page, &len, &offset);
376 len = min(len, to_bytes(remaining));
377 if (!bio_add_page(bio, page, len, offset))
378 break;
379
380 offset = 0;
381 remaining -= to_sector(len);
382 dp->next_page(dp);
383 }
384
385 atomic_inc(&io->count);
Mike Christie4e49ea42016-06-05 14:31:41 -0500386 submit_bio(bio);
Mikulas Patocka12fc0f42009-12-10 23:52:22 +0000387 } while (remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Mike Christiee6047142016-06-05 14:32:04 -0500390static void dispatch_io(int op, int op_flags, unsigned int num_regions,
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100391 struct dm_io_region *where, struct dpages *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct io *io, int sync)
393{
394 int i;
395 struct dpages old_pages = *dp;
396
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000397 BUG_ON(num_regions > DM_IO_MAX_REGIONS);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (sync)
Mike Christiee6047142016-06-05 14:32:04 -0500400 op_flags |= REQ_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /*
403 * For multiple regions we need to be careful to rewind
404 * the dp object for each call to do_region.
405 */
406 for (i = 0; i < num_regions; i++) {
407 *dp = old_pages;
Mike Christie28a8f0d2016-06-05 14:32:25 -0500408 if (where[i].count || (op_flags & REQ_PREFLUSH))
Mike Christiee6047142016-06-05 14:32:04 -0500409 do_region(op, op_flags, i, where + i, dp, io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
412 /*
Heinz Mauelshagenf00b16a2006-12-08 02:41:01 -0800413 * Drop the extra reference that we were holding to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * the io being completed too early.
415 */
416 dec_count(io, 0, 0);
417}
418
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400419struct sync_io {
420 unsigned long error_bits;
421 struct completion wait;
422};
423
424static void sync_io_complete(unsigned long error, void *context)
425{
426 struct sync_io *sio = context;
427
428 sio->error_bits = error;
429 complete(&sio->wait);
430}
431
Heinz Mauelshagen891ce202007-05-09 02:33:00 -0700432static int sync_io(struct dm_io_client *client, unsigned int num_regions,
Mike Christiee6047142016-06-05 14:32:04 -0500433 struct dm_io_region *where, int op, int op_flags,
434 struct dpages *dp, unsigned long *error_bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400436 struct io *io;
437 struct sync_io sio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Mike Christiee6047142016-06-05 14:32:04 -0500439 if (num_regions > 1 && !op_is_write(op)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 WARN_ON(1);
441 return -EIO;
442 }
443
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400444 init_completion(&sio.wait);
445
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400446 io = mempool_alloc(&client->pool, GFP_NOIO);
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000447 io->error_bits = 0;
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000448 atomic_set(&io->count, 1); /* see dispatch_io() */
Mikulas Patockaf1e53982009-12-10 23:51:58 +0000449 io->client = client;
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400450 io->callback = sync_io_complete;
451 io->context = &sio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100453 io->vma_invalidate_address = dp->vma_invalidate_address;
454 io->vma_invalidate_size = dp->vma_invalidate_size;
455
Mike Christiee6047142016-06-05 14:32:04 -0500456 dispatch_io(op, op_flags, num_regions, where, dp, io, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400458 wait_for_completion_io(&sio.wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Heinz Mauelshagen891ce202007-05-09 02:33:00 -0700460 if (error_bits)
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400461 *error_bits = sio.error_bits;
Heinz Mauelshagen891ce202007-05-09 02:33:00 -0700462
Joe Thornber97e7cdf2014-06-30 13:26:30 -0400463 return sio.error_bits ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Heinz Mauelshagen891ce202007-05-09 02:33:00 -0700466static int async_io(struct dm_io_client *client, unsigned int num_regions,
Mike Christiee6047142016-06-05 14:32:04 -0500467 struct dm_io_region *where, int op, int op_flags,
468 struct dpages *dp, io_notify_fn fn, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct io *io;
471
Mike Christiee6047142016-06-05 14:32:04 -0500472 if (num_regions > 1 && !op_is_write(op)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 WARN_ON(1);
474 fn(1, context);
475 return -EIO;
476 }
477
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400478 io = mempool_alloc(&client->pool, GFP_NOIO);
Alasdair G Kergone01fd7e2008-04-24 21:43:14 +0100479 io->error_bits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 atomic_set(&io->count, 1); /* see dispatch_io() */
Heinz Mauelshagen891ce202007-05-09 02:33:00 -0700481 io->client = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 io->callback = fn;
483 io->context = context;
484
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100485 io->vma_invalidate_address = dp->vma_invalidate_address;
486 io->vma_invalidate_size = dp->vma_invalidate_size;
487
Mike Christiee6047142016-06-05 14:32:04 -0500488 dispatch_io(op, op_flags, num_regions, where, dp, io, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 0;
490}
491
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100492static int dp_init(struct dm_io_request *io_req, struct dpages *dp,
493 unsigned long size)
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700494{
495 /* Set up dpages based on memory type */
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100496
497 dp->vma_invalidate_address = NULL;
498 dp->vma_invalidate_size = 0;
499
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700500 switch (io_req->mem.type) {
501 case DM_IO_PAGE_LIST:
502 list_dp_init(dp, io_req->mem.ptr.pl, io_req->mem.offset);
503 break;
504
Kent Overstreet003b5c52013-10-11 15:45:43 -0700505 case DM_IO_BIO:
506 bio_dp_init(dp, io_req->mem.ptr.bio);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700507 break;
508
509 case DM_IO_VMA:
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100510 flush_kernel_vmap_range(io_req->mem.ptr.vma, size);
Mike Christiee6047142016-06-05 14:32:04 -0500511 if (io_req->bi_op == REQ_OP_READ) {
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100512 dp->vma_invalidate_address = io_req->mem.ptr.vma;
513 dp->vma_invalidate_size = size;
514 }
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700515 vm_dp_init(dp, io_req->mem.ptr.vma);
516 break;
517
518 case DM_IO_KMEM:
519 km_dp_init(dp, io_req->mem.ptr.addr);
520 break;
521
522 default:
523 return -EINVAL;
524 }
525
526 return 0;
527}
528
529/*
Mikulas Patocka7ff14a32008-04-24 22:10:47 +0100530 * New collapsed (a)synchronous interface.
531 *
532 * If the IO is asynchronous (i.e. it has notify.fn), you must either unplug
Jens Axboe1eff9d32016-08-05 15:35:16 -0600533 * the queue with blk_unplug() some time later or set REQ_SYNC in
534 * io_req->bi_opf. If you fail to do one of these, the IO will be submitted to
535 * the disk after q->unplug_delay, which defaults to 3ms in blk-settings.c.
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700536 */
537int dm_io(struct dm_io_request *io_req, unsigned num_regions,
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100538 struct dm_io_region *where, unsigned long *sync_error_bits)
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700539{
540 int r;
541 struct dpages dp;
542
Mikulas Patockabb91bc72011-08-02 12:32:01 +0100543 r = dp_init(io_req, &dp, (unsigned long)where->count << SECTOR_SHIFT);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700544 if (r)
545 return r;
546
547 if (!io_req->notify.fn)
548 return sync_io(io_req->client, num_regions, where,
Mike Christiee6047142016-06-05 14:32:04 -0500549 io_req->bi_op, io_req->bi_op_flags, &dp,
550 sync_error_bits);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700551
Mike Christiee6047142016-06-05 14:32:04 -0500552 return async_io(io_req->client, num_regions, where, io_req->bi_op,
553 io_req->bi_op_flags, &dp, io_req->notify.fn,
554 io_req->notify.context);
Heinz Mauelshagenc8b03af2007-05-09 02:33:01 -0700555}
556EXPORT_SYMBOL(dm_io);
Mikulas Patocka952b3552009-12-10 23:51:57 +0000557
558int __init dm_io_init(void)
559{
560 _dm_io_cache = KMEM_CACHE(io, 0);
561 if (!_dm_io_cache)
562 return -ENOMEM;
563
564 return 0;
565}
566
567void dm_io_exit(void)
568{
569 kmem_cache_destroy(_dm_io_cache);
570 _dm_io_cache = NULL;
571}