blob: bc63b3a2d18cad59b0061c4fc1d4ff7b042ac5f4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Howells831058d2006-08-29 19:06:00 +01002/* bounce buffer handling for block devices
3 *
4 * - Split from highmem.c
5 */
6
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -07007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David Howells831058d2006-08-29 19:06:00 +01009#include <linux/mm.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040010#include <linux/export.h>
David Howells831058d2006-08-29 19:06:00 +010011#include <linux/swap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
David Howells831058d2006-08-29 19:06:00 +010013#include <linux/bio.h>
14#include <linux/pagemap.h>
15#include <linux/mempool.h>
16#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040017#include <linux/backing-dev.h>
David Howells831058d2006-08-29 19:06:00 +010018#include <linux/init.h>
19#include <linux/hash.h>
20#include <linux/highmem.h>
David Vrabel3bcfeaf2011-10-20 21:24:30 +020021#include <linux/bootmem.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070022#include <linux/printk.h>
David Howells831058d2006-08-29 19:06:00 +010023#include <asm/tlbflush.h>
24
Li Zefan55782132009-06-09 13:43:05 +080025#include <trace/events/block.h>
Christoph Hellwig3bce0162017-06-19 09:26:21 +020026#include "blk.h"
Li Zefan55782132009-06-09 13:43:05 +080027
David Howells831058d2006-08-29 19:06:00 +010028#define POOL_SIZE 64
29#define ISA_POOL_SIZE 16
30
Kent Overstreet338aa962018-05-20 18:25:47 -040031static struct bio_set bounce_bio_set, bounce_bio_split;
32static mempool_t page_pool, isa_page_pool;
David Howells831058d2006-08-29 19:06:00 +010033
Arnd Bergmanna687a532018-03-07 23:30:54 +010034#if defined(CONFIG_HIGHMEM)
David Howells831058d2006-08-29 19:06:00 +010035static __init int init_emergency_pool(void)
36{
Kent Overstreet338aa962018-05-20 18:25:47 -040037 int ret;
Chris Metcalff1006252012-06-16 16:41:05 -040038#if defined(CONFIG_HIGHMEM) && !defined(CONFIG_MEMORY_HOTPLUG)
David Vrabel3bcfeaf2011-10-20 21:24:30 +020039 if (max_pfn <= max_low_pfn)
David Howells831058d2006-08-29 19:06:00 +010040 return 0;
David Vrabel3bcfeaf2011-10-20 21:24:30 +020041#endif
David Howells831058d2006-08-29 19:06:00 +010042
Kent Overstreet338aa962018-05-20 18:25:47 -040043 ret = mempool_init_page_pool(&page_pool, POOL_SIZE, 0);
44 BUG_ON(ret);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070045 pr_info("pool size: %d pages\n", POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +010046
Kent Overstreet338aa962018-05-20 18:25:47 -040047 ret = bioset_init(&bounce_bio_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
48 BUG_ON(ret);
Jens Axboe04c49502018-05-30 18:51:21 -060049 if (bioset_integrity_create(&bounce_bio_set, BIO_POOL_SIZE))
NeilBrowna8821f32017-06-18 14:38:58 +100050 BUG_ON(1);
51
Kent Overstreet338aa962018-05-20 18:25:47 -040052 ret = bioset_init(&bounce_bio_split, BIO_POOL_SIZE, 0, 0);
53 BUG_ON(ret);
NeilBrowna8821f32017-06-18 14:38:58 +100054
David Howells831058d2006-08-29 19:06:00 +010055 return 0;
56}
57
58__initcall(init_emergency_pool);
Chris Metcalff1006252012-06-16 16:41:05 -040059#endif
David Howells831058d2006-08-29 19:06:00 +010060
Chris Metcalff1006252012-06-16 16:41:05 -040061#ifdef CONFIG_HIGHMEM
David Howells831058d2006-08-29 19:06:00 +010062/*
63 * highmem version, map in to vec
64 */
65static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom)
66{
David Howells831058d2006-08-29 19:06:00 +010067 unsigned char *vto;
68
Cong Wang9b04c5f2011-11-25 23:14:39 +080069 vto = kmap_atomic(to->bv_page);
David Howells831058d2006-08-29 19:06:00 +010070 memcpy(vto + to->bv_offset, vfrom, to->bv_len);
Cong Wang9b04c5f2011-11-25 23:14:39 +080071 kunmap_atomic(vto);
David Howells831058d2006-08-29 19:06:00 +010072}
73
74#else /* CONFIG_HIGHMEM */
75
76#define bounce_copy_vec(to, vfrom) \
77 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
78
79#endif /* CONFIG_HIGHMEM */
80
81/*
82 * allocate pages in the DMA region for the ISA pool
83 */
84static void *mempool_alloc_pages_isa(gfp_t gfp_mask, void *data)
85{
86 return mempool_alloc_pages(gfp_mask | GFP_DMA, data);
87}
88
89/*
90 * gets called "every" time someone init's a queue with BLK_BOUNCE_ISA
91 * as the max address, so check if the pool has already been created.
92 */
93int init_emergency_isa_pool(void)
94{
Kent Overstreet338aa962018-05-20 18:25:47 -040095 int ret;
96
97 if (mempool_initialized(&isa_page_pool))
David Howells831058d2006-08-29 19:06:00 +010098 return 0;
99
Kent Overstreet338aa962018-05-20 18:25:47 -0400100 ret = mempool_init(&isa_page_pool, ISA_POOL_SIZE, mempool_alloc_pages_isa,
101 mempool_free_pages, (void *) 0);
102 BUG_ON(ret);
David Howells831058d2006-08-29 19:06:00 +0100103
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -0700104 pr_info("isa pool size: %d pages\n", ISA_POOL_SIZE);
David Howells831058d2006-08-29 19:06:00 +0100105 return 0;
106}
107
108/*
109 * Simple bounce buffer support for highmem pages. Depending on the
110 * queue gfp mask set, *to may or may not be a highmem page. kmap it
111 * always, it will do the Right Thing
112 */
113static void copy_to_high_bio_irq(struct bio *to, struct bio *from)
114{
115 unsigned char *vfrom;
Ming Lei3c892a02017-12-18 20:22:07 +0800116 struct bio_vec tovec, fromvec;
Kent Overstreet79886132013-11-23 17:19:00 -0800117 struct bvec_iter iter;
Ming Lei3c892a02017-12-18 20:22:07 +0800118 /*
119 * The bio of @from is created by bounce, so we can iterate
120 * its bvec from start to end, but the @from->bi_iter can't be
121 * trusted because it might be changed by splitting.
122 */
123 struct bvec_iter from_iter = BVEC_ITER_ALL_INIT;
David Howells831058d2006-08-29 19:06:00 +0100124
Kent Overstreet79886132013-11-23 17:19:00 -0800125 bio_for_each_segment(tovec, to, iter) {
Ming Lei3c892a02017-12-18 20:22:07 +0800126 fromvec = bio_iter_iovec(from, from_iter);
127 if (tovec.bv_page != fromvec.bv_page) {
Kent Overstreet79886132013-11-23 17:19:00 -0800128 /*
129 * fromvec->bv_offset and fromvec->bv_len might have
130 * been modified by the block layer, so use the original
131 * copy, bounce_copy_vec already uses tovec->bv_len
132 */
Ming Lei3c892a02017-12-18 20:22:07 +0800133 vfrom = page_address(fromvec.bv_page) +
Kent Overstreet79886132013-11-23 17:19:00 -0800134 tovec.bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100135
Kent Overstreet79886132013-11-23 17:19:00 -0800136 bounce_copy_vec(&tovec, vfrom);
137 flush_dcache_page(tovec.bv_page);
138 }
Ming Lei3c892a02017-12-18 20:22:07 +0800139 bio_advance_iter(from, &from_iter, tovec.bv_len);
David Howells831058d2006-08-29 19:06:00 +0100140 }
141}
142
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200143static void bounce_end_io(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100144{
145 struct bio *bio_orig = bio->bi_private;
Ming Lei7891f052017-12-18 20:22:06 +0800146 struct bio_vec *bvec, orig_vec;
David Howells831058d2006-08-29 19:06:00 +0100147 int i;
Ming Lei7891f052017-12-18 20:22:06 +0800148 struct bvec_iter orig_iter = bio_orig->bi_iter;
David Howells831058d2006-08-29 19:06:00 +0100149
David Howells831058d2006-08-29 19:06:00 +0100150 /*
151 * free up bounce indirect pages used
152 */
Kent Overstreetd74c6d52013-02-06 12:23:11 -0800153 bio_for_each_segment_all(bvec, bio, i) {
Ming Lei7891f052017-12-18 20:22:06 +0800154 orig_vec = bio_iter_iovec(bio_orig, orig_iter);
155 if (bvec->bv_page != orig_vec.bv_page) {
156 dec_zone_page_state(bvec->bv_page, NR_BOUNCE);
157 mempool_free(bvec->bv_page, pool);
158 }
159 bio_advance_iter(bio_orig, &orig_iter, orig_vec.bv_len);
David Howells831058d2006-08-29 19:06:00 +0100160 }
161
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200162 bio_orig->bi_status = bio->bi_status;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200163 bio_endio(bio_orig);
David Howells831058d2006-08-29 19:06:00 +0100164 bio_put(bio);
165}
166
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200167static void bounce_end_io_write(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100168{
Kent Overstreet338aa962018-05-20 18:25:47 -0400169 bounce_end_io(bio, &page_pool);
David Howells831058d2006-08-29 19:06:00 +0100170}
171
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200172static void bounce_end_io_write_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100173{
David Howells831058d2006-08-29 19:06:00 +0100174
Kent Overstreet338aa962018-05-20 18:25:47 -0400175 bounce_end_io(bio, &isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100176}
177
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200178static void __bounce_end_io_read(struct bio *bio, mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100179{
180 struct bio *bio_orig = bio->bi_private;
181
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200182 if (!bio->bi_status)
David Howells831058d2006-08-29 19:06:00 +0100183 copy_to_high_bio_irq(bio_orig, bio);
184
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200185 bounce_end_io(bio, pool);
David Howells831058d2006-08-29 19:06:00 +0100186}
187
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200188static void bounce_end_io_read(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100189{
Kent Overstreet338aa962018-05-20 18:25:47 -0400190 __bounce_end_io_read(bio, &page_pool);
David Howells831058d2006-08-29 19:06:00 +0100191}
192
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200193static void bounce_end_io_read_isa(struct bio *bio)
David Howells831058d2006-08-29 19:06:00 +0100194{
Kent Overstreet338aa962018-05-20 18:25:47 -0400195 __bounce_end_io_read(bio, &isa_page_pool);
David Howells831058d2006-08-29 19:06:00 +0100196}
197
Christoph Hellwigc55183c2018-07-24 09:52:34 +0200198static struct bio *bounce_clone_bio(struct bio *bio_src, gfp_t gfp_mask,
199 struct bio_set *bs)
200{
201 struct bvec_iter iter;
202 struct bio_vec bv;
203 struct bio *bio;
204
205 /*
206 * Pre immutable biovecs, __bio_clone() used to just do a memcpy from
207 * bio_src->bi_io_vec to bio->bi_io_vec.
208 *
209 * We can't do that anymore, because:
210 *
211 * - The point of cloning the biovec is to produce a bio with a biovec
212 * the caller can modify: bi_idx and bi_bvec_done should be 0.
213 *
214 * - The original bio could've had more than BIO_MAX_PAGES biovecs; if
215 * we tried to clone the whole thing bio_alloc_bioset() would fail.
216 * But the clone should succeed as long as the number of biovecs we
217 * actually need to allocate is fewer than BIO_MAX_PAGES.
218 *
219 * - Lastly, bi_vcnt should not be looked at or relied upon by code
220 * that does not own the bio - reason being drivers don't use it for
221 * iterating over the biovec anymore, so expecting it to be kept up
222 * to date (i.e. for clones that share the parent biovec) is just
223 * asking for trouble and would force extra work on
224 * __bio_clone_fast() anyways.
225 */
226
227 bio = bio_alloc_bioset(gfp_mask, bio_segments(bio_src), bs);
228 if (!bio)
229 return NULL;
230 bio->bi_disk = bio_src->bi_disk;
231 bio->bi_opf = bio_src->bi_opf;
232 bio->bi_write_hint = bio_src->bi_write_hint;
233 bio->bi_iter.bi_sector = bio_src->bi_iter.bi_sector;
234 bio->bi_iter.bi_size = bio_src->bi_iter.bi_size;
235
236 switch (bio_op(bio)) {
237 case REQ_OP_DISCARD:
238 case REQ_OP_SECURE_ERASE:
239 case REQ_OP_WRITE_ZEROES:
240 break;
241 case REQ_OP_WRITE_SAME:
242 bio->bi_io_vec[bio->bi_vcnt++] = bio_src->bi_io_vec[0];
243 break;
244 default:
245 bio_for_each_segment(bv, bio_src, iter)
246 bio->bi_io_vec[bio->bi_vcnt++] = bv;
247 break;
248 }
249
250 if (bio_integrity(bio_src)) {
251 int ret;
252
253 ret = bio_integrity_clone(bio, bio_src, gfp_mask);
254 if (ret < 0) {
255 bio_put(bio);
256 return NULL;
257 }
258 }
259
260 bio_clone_blkcg_association(bio, bio_src);
261
262 return bio;
263}
264
Jens Axboe165125e2007-07-24 09:28:11 +0200265static void __blk_queue_bounce(struct request_queue *q, struct bio **bio_orig,
Jan Karaa3ad0a92015-06-18 17:19:14 +0200266 mempool_t *pool)
David Howells831058d2006-08-29 19:06:00 +0100267{
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700268 struct bio *bio;
269 int rw = bio_data_dir(*bio_orig);
Kent Overstreet79886132013-11-23 17:19:00 -0800270 struct bio_vec *to, from;
271 struct bvec_iter iter;
NeilBrowna8821f32017-06-18 14:38:58 +1000272 unsigned i = 0;
273 bool bounce = false;
274 int sectors = 0;
Ming Lei14cb0dc2017-12-18 15:40:43 +0800275 bool passthrough = bio_is_passthrough(*bio_orig);
David Howells831058d2006-08-29 19:06:00 +0100276
NeilBrowna8821f32017-06-18 14:38:58 +1000277 bio_for_each_segment(from, *bio_orig, iter) {
278 if (i++ < BIO_MAX_PAGES)
279 sectors += from.bv_len >> 9;
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200280 if (page_to_pfn(from.bv_page) > q->limits.bounce_pfn)
NeilBrowna8821f32017-06-18 14:38:58 +1000281 bounce = true;
282 }
283 if (!bounce)
284 return;
David Howells831058d2006-08-29 19:06:00 +0100285
Ming Lei14cb0dc2017-12-18 15:40:43 +0800286 if (!passthrough && sectors < bio_sectors(*bio_orig)) {
Kent Overstreet338aa962018-05-20 18:25:47 -0400287 bio = bio_split(*bio_orig, sectors, GFP_NOIO, &bounce_bio_split);
NeilBrowna8821f32017-06-18 14:38:58 +1000288 bio_chain(bio, *bio_orig);
289 generic_make_request(*bio_orig);
290 *bio_orig = bio;
291 }
Christoph Hellwigc55183c2018-07-24 09:52:34 +0200292 bio = bounce_clone_bio(*bio_orig, GFP_NOIO, passthrough ? NULL :
Kent Overstreet338aa962018-05-20 18:25:47 -0400293 &bounce_bio_set);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700294
Kent Overstreetcb34e052012-09-05 15:22:02 -0700295 bio_for_each_segment_all(to, bio, i) {
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700296 struct page *page = to->bv_page;
297
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200298 if (page_to_pfn(page) <= q->limits.bounce_pfn)
David Howells831058d2006-08-29 19:06:00 +0100299 continue;
300
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700301 to->bv_page = mempool_alloc(pool, q->bounce_gfp);
Wang YanQing393a3392015-04-26 16:43:31 +0800302 inc_zone_page_state(to->bv_page, NR_BOUNCE);
David Howells831058d2006-08-29 19:06:00 +0100303
304 if (rw == WRITE) {
305 char *vto, *vfrom;
306
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700307 flush_dcache_page(page);
308
David Howells831058d2006-08-29 19:06:00 +0100309 vto = page_address(to->bv_page) + to->bv_offset;
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700310 vfrom = kmap_atomic(page) + to->bv_offset;
David Howells831058d2006-08-29 19:06:00 +0100311 memcpy(vto, vfrom, to->bv_len);
Kent Overstreet6bc454d2012-09-10 14:30:37 -0700312 kunmap_atomic(vfrom);
David Howells831058d2006-08-29 19:06:00 +0100313 }
314 }
315
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +0100316 trace_block_bio_bounce(q, *bio_orig);
Jens Axboec43a5082007-01-12 12:20:26 +0100317
David Howells831058d2006-08-29 19:06:00 +0100318 bio->bi_flags |= (1 << BIO_BOUNCED);
David Howells831058d2006-08-29 19:06:00 +0100319
Kent Overstreet338aa962018-05-20 18:25:47 -0400320 if (pool == &page_pool) {
David Howells831058d2006-08-29 19:06:00 +0100321 bio->bi_end_io = bounce_end_io_write;
322 if (rw == READ)
323 bio->bi_end_io = bounce_end_io_read;
324 } else {
325 bio->bi_end_io = bounce_end_io_write_isa;
326 if (rw == READ)
327 bio->bi_end_io = bounce_end_io_read_isa;
328 }
329
330 bio->bi_private = *bio_orig;
331 *bio_orig = bio;
332}
333
Jens Axboe165125e2007-07-24 09:28:11 +0200334void blk_queue_bounce(struct request_queue *q, struct bio **bio_orig)
David Howells831058d2006-08-29 19:06:00 +0100335{
336 mempool_t *pool;
337
338 /*
Jens Axboebf2de6f2007-09-27 13:01:25 +0200339 * Data-less bio, nothing to bounce
340 */
Jens Axboe36144072008-08-14 13:12:15 +0200341 if (!bio_has_data(*bio_orig))
Jens Axboebf2de6f2007-09-27 13:01:25 +0200342 return;
343
344 /*
David Howells831058d2006-08-29 19:06:00 +0100345 * for non-isa bounce case, just check if the bounce pfn is equal
346 * to or bigger than the highest pfn in the system -- in that case,
347 * don't waste time iterating over bio segments
348 */
349 if (!(q->bounce_gfp & GFP_DMA)) {
Christoph Hellwig1c4bc3a2017-06-19 09:26:22 +0200350 if (q->limits.bounce_pfn >= blk_max_pfn)
David Howells831058d2006-08-29 19:06:00 +0100351 return;
Kent Overstreet338aa962018-05-20 18:25:47 -0400352 pool = &page_pool;
David Howells831058d2006-08-29 19:06:00 +0100353 } else {
Kent Overstreet338aa962018-05-20 18:25:47 -0400354 BUG_ON(!mempool_initialized(&isa_page_pool));
355 pool = &isa_page_pool;
David Howells831058d2006-08-29 19:06:00 +0100356 }
357
David Howells831058d2006-08-29 19:06:00 +0100358 /*
359 * slow path
360 */
Jan Karaa3ad0a92015-06-18 17:19:14 +0200361 __blk_queue_bounce(q, bio_orig, pool);
David Howells831058d2006-08-29 19:06:00 +0100362}