blob: 369e204d14d013f66e3422444d19361d09a10863 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jens Axboe86db1e22008-01-29 14:53:40 +01002/*
3 * Functions related to mapping data to requests
4 */
5#include <linux/kernel.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +01006#include <linux/sched/task_stack.h>
Jens Axboe86db1e22008-01-29 14:53:40 +01007#include <linux/module.h>
8#include <linux/bio.h>
9#include <linux/blkdev.h>
Kent Overstreet26e49cf2015-01-18 16:16:31 +010010#include <linux/uio.h>
Jens Axboe86db1e22008-01-29 14:53:40 +010011
12#include "blk.h"
13
Christoph Hellwig130879f2020-03-27 18:48:37 +010014struct bio_map_data {
Christoph Hellwigf3256072020-08-27 17:37:45 +020015 bool is_our_pages : 1;
16 bool is_null_mapped : 1;
Christoph Hellwig130879f2020-03-27 18:48:37 +010017 struct iov_iter iter;
18 struct iovec iov[];
19};
20
21static struct bio_map_data *bio_alloc_map_data(struct iov_iter *data,
22 gfp_t gfp_mask)
23{
24 struct bio_map_data *bmd;
25
26 if (data->nr_segs > UIO_MAXIOV)
27 return NULL;
28
29 bmd = kmalloc(struct_size(bmd, iov, data->nr_segs), gfp_mask);
30 if (!bmd)
31 return NULL;
32 memcpy(bmd->iov, data->iov, sizeof(struct iovec) * data->nr_segs);
33 bmd->iter = *data;
34 bmd->iter.iov = bmd->iov;
35 return bmd;
36}
37
38/**
39 * bio_copy_from_iter - copy all pages from iov_iter to bio
40 * @bio: The &struct bio which describes the I/O as destination
41 * @iter: iov_iter as source
42 *
43 * Copy all pages from iov_iter to bio.
44 * Returns 0 on success, or error on failure.
45 */
46static int bio_copy_from_iter(struct bio *bio, struct iov_iter *iter)
47{
48 struct bio_vec *bvec;
49 struct bvec_iter_all iter_all;
50
51 bio_for_each_segment_all(bvec, bio, iter_all) {
52 ssize_t ret;
53
54 ret = copy_page_from_iter(bvec->bv_page,
55 bvec->bv_offset,
56 bvec->bv_len,
57 iter);
58
59 if (!iov_iter_count(iter))
60 break;
61
62 if (ret < bvec->bv_len)
63 return -EFAULT;
64 }
65
66 return 0;
67}
68
69/**
70 * bio_copy_to_iter - copy all pages from bio to iov_iter
71 * @bio: The &struct bio which describes the I/O as source
72 * @iter: iov_iter as destination
73 *
74 * Copy all pages from bio to iov_iter.
75 * Returns 0 on success, or error on failure.
76 */
77static int bio_copy_to_iter(struct bio *bio, struct iov_iter iter)
78{
79 struct bio_vec *bvec;
80 struct bvec_iter_all iter_all;
81
82 bio_for_each_segment_all(bvec, bio, iter_all) {
83 ssize_t ret;
84
85 ret = copy_page_to_iter(bvec->bv_page,
86 bvec->bv_offset,
87 bvec->bv_len,
88 &iter);
89
90 if (!iov_iter_count(&iter))
91 break;
92
93 if (ret < bvec->bv_len)
94 return -EFAULT;
95 }
96
97 return 0;
98}
99
100/**
101 * bio_uncopy_user - finish previously mapped bio
102 * @bio: bio being terminated
103 *
104 * Free pages allocated from bio_copy_user_iov() and write back data
105 * to user space in case of a read.
106 */
107static int bio_uncopy_user(struct bio *bio)
108{
109 struct bio_map_data *bmd = bio->bi_private;
110 int ret = 0;
111
Christoph Hellwig3310eeb2020-08-27 17:37:48 +0200112 if (!bmd->is_null_mapped) {
Christoph Hellwig130879f2020-03-27 18:48:37 +0100113 /*
114 * if we're in a workqueue, the request is orphaned, so
115 * don't copy into a random user address space, just free
116 * and return -EINTR so user space doesn't expect any data.
117 */
118 if (!current->mm)
119 ret = -EINTR;
120 else if (bio_data_dir(bio) == READ)
121 ret = bio_copy_to_iter(bio, bmd->iter);
122 if (bmd->is_our_pages)
123 bio_free_pages(bio);
124 }
125 kfree(bmd);
126 bio_put(bio);
127 return ret;
128}
129
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200130static int bio_copy_user_iov(struct request *rq, struct rq_map_data *map_data,
131 struct iov_iter *iter, gfp_t gfp_mask)
Christoph Hellwig130879f2020-03-27 18:48:37 +0100132{
133 struct bio_map_data *bmd;
134 struct page *page;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200135 struct bio *bio, *bounce_bio;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100136 int i = 0, ret;
137 int nr_pages;
138 unsigned int len = iter->count;
139 unsigned int offset = map_data ? offset_in_page(map_data->offset) : 0;
140
141 bmd = bio_alloc_map_data(iter, gfp_mask);
142 if (!bmd)
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200143 return -ENOMEM;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100144
145 /*
146 * We need to do a deep copy of the iov_iter including the iovecs.
147 * The caller provided iov might point to an on-stack or otherwise
148 * shortlived one.
149 */
Christoph Hellwigf3256072020-08-27 17:37:45 +0200150 bmd->is_our_pages = !map_data;
Christoph Hellwig03859712020-09-23 17:07:13 +0200151 bmd->is_null_mapped = (map_data && map_data->null_mapped);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100152
Matthew Wilcox (Oracle)5f7136d2021-01-29 04:38:57 +0000153 nr_pages = bio_max_segs(DIV_ROUND_UP(offset + len, PAGE_SIZE));
Christoph Hellwig130879f2020-03-27 18:48:37 +0100154
155 ret = -ENOMEM;
156 bio = bio_kmalloc(gfp_mask, nr_pages);
157 if (!bio)
158 goto out_bmd;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200159 bio->bi_opf |= req_op(rq);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100160
161 if (map_data) {
162 nr_pages = 1 << map_data->page_order;
163 i = map_data->offset / PAGE_SIZE;
164 }
165 while (len) {
166 unsigned int bytes = PAGE_SIZE;
167
168 bytes -= offset;
169
170 if (bytes > len)
171 bytes = len;
172
173 if (map_data) {
174 if (i == map_data->nr_entries * nr_pages) {
175 ret = -ENOMEM;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200176 goto cleanup;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100177 }
178
179 page = map_data->pages[i / nr_pages];
180 page += (i % nr_pages);
181
182 i++;
183 } else {
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200184 page = alloc_page(rq->q->bounce_gfp | gfp_mask);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100185 if (!page) {
186 ret = -ENOMEM;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200187 goto cleanup;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100188 }
189 }
190
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200191 if (bio_add_pc_page(rq->q, bio, page, bytes, offset) < bytes) {
Christoph Hellwig130879f2020-03-27 18:48:37 +0100192 if (!map_data)
193 __free_page(page);
194 break;
195 }
196
197 len -= bytes;
198 offset = 0;
199 }
200
Christoph Hellwig130879f2020-03-27 18:48:37 +0100201 if (map_data)
202 map_data->offset += bio->bi_iter.bi_size;
203
204 /*
205 * success
206 */
207 if ((iov_iter_rw(iter) == WRITE &&
208 (!map_data || !map_data->null_mapped)) ||
209 (map_data && map_data->from_user)) {
210 ret = bio_copy_from_iter(bio, iter);
211 if (ret)
212 goto cleanup;
213 } else {
214 if (bmd->is_our_pages)
215 zero_fill_bio(bio);
216 iov_iter_advance(iter, bio->bi_iter.bi_size);
217 }
218
219 bio->bi_private = bmd;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200220
221 bounce_bio = bio;
222 ret = blk_rq_append_bio(rq, &bounce_bio);
223 if (ret)
224 goto cleanup;
225
226 /*
227 * We link the bounce buffer in and could have to traverse it later, so
228 * we have to get a ref to prevent it from being freed
229 */
230 bio_get(bounce_bio);
231 return 0;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100232cleanup:
233 if (!map_data)
234 bio_free_pages(bio);
235 bio_put(bio);
236out_bmd:
237 kfree(bmd);
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200238 return ret;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100239}
240
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200241static int bio_map_user_iov(struct request *rq, struct iov_iter *iter,
242 gfp_t gfp_mask)
Christoph Hellwig130879f2020-03-27 18:48:37 +0100243{
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200244 unsigned int max_sectors = queue_max_hw_sectors(rq->q);
245 struct bio *bio, *bounce_bio;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100246 int ret;
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200247 int j;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100248
249 if (!iov_iter_count(iter))
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200250 return -EINVAL;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100251
252 bio = bio_kmalloc(gfp_mask, iov_iter_npages(iter, BIO_MAX_PAGES));
253 if (!bio)
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200254 return -ENOMEM;
255 bio->bi_opf |= req_op(rq);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100256
257 while (iov_iter_count(iter)) {
258 struct page **pages;
259 ssize_t bytes;
260 size_t offs, added = 0;
261 int npages;
262
263 bytes = iov_iter_get_pages_alloc(iter, &pages, LONG_MAX, &offs);
264 if (unlikely(bytes <= 0)) {
265 ret = bytes ? bytes : -EFAULT;
266 goto out_unmap;
267 }
268
269 npages = DIV_ROUND_UP(offs + bytes, PAGE_SIZE);
270
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200271 if (unlikely(offs & queue_dma_alignment(rq->q))) {
Christoph Hellwig130879f2020-03-27 18:48:37 +0100272 ret = -EINVAL;
273 j = 0;
274 } else {
275 for (j = 0; j < npages; j++) {
276 struct page *page = pages[j];
277 unsigned int n = PAGE_SIZE - offs;
278 bool same_page = false;
279
280 if (n > bytes)
281 n = bytes;
282
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200283 if (!bio_add_hw_page(rq->q, bio, page, n, offs,
Christoph Hellwige4581102020-05-12 17:55:46 +0900284 max_sectors, &same_page)) {
Christoph Hellwig130879f2020-03-27 18:48:37 +0100285 if (same_page)
286 put_page(page);
287 break;
288 }
289
290 added += n;
291 bytes -= n;
292 offs = 0;
293 }
294 iov_iter_advance(iter, added);
295 }
296 /*
297 * release the pages we didn't map into the bio, if any
298 */
299 while (j < npages)
300 put_page(pages[j++]);
301 kvfree(pages);
302 /* couldn't stuff something into bio? */
303 if (bytes)
304 break;
305 }
306
Christoph Hellwig130879f2020-03-27 18:48:37 +0100307 /*
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200308 * Subtle: if we end up needing to bounce a bio, it would normally
309 * disappear when its bi_end_io is run. However, we need the original
310 * bio for the unmap, so grab an extra reference to it
Christoph Hellwig130879f2020-03-27 18:48:37 +0100311 */
312 bio_get(bio);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100313
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200314 bounce_bio = bio;
315 ret = blk_rq_append_bio(rq, &bounce_bio);
316 if (ret)
317 goto out_put_orig;
318
319 /*
320 * We link the bounce buffer in and could have to traverse it
321 * later, so we have to get a ref to prevent it from being freed
322 */
323 bio_get(bounce_bio);
324 return 0;
325
326 out_put_orig:
327 bio_put(bio);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100328 out_unmap:
329 bio_release_pages(bio, false);
330 bio_put(bio);
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200331 return ret;
Christoph Hellwig130879f2020-03-27 18:48:37 +0100332}
333
334/**
335 * bio_unmap_user - unmap a bio
336 * @bio: the bio being unmapped
337 *
338 * Unmap a bio previously mapped by bio_map_user_iov(). Must be called from
339 * process context.
340 *
341 * bio_unmap_user() may sleep.
342 */
343static void bio_unmap_user(struct bio *bio)
344{
345 bio_release_pages(bio, bio_data_dir(bio) == READ);
346 bio_put(bio);
347 bio_put(bio);
348}
349
350static void bio_invalidate_vmalloc_pages(struct bio *bio)
351{
352#ifdef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
353 if (bio->bi_private && !op_is_write(bio_op(bio))) {
354 unsigned long i, len = 0;
355
356 for (i = 0; i < bio->bi_vcnt; i++)
357 len += bio->bi_io_vec[i].bv_len;
358 invalidate_kernel_vmap_range(bio->bi_private, len);
359 }
360#endif
361}
362
363static void bio_map_kern_endio(struct bio *bio)
364{
365 bio_invalidate_vmalloc_pages(bio);
366 bio_put(bio);
367}
368
369/**
370 * bio_map_kern - map kernel address into bio
371 * @q: the struct request_queue for the bio
372 * @data: pointer to buffer to map
373 * @len: length in bytes
374 * @gfp_mask: allocation flags for bio allocation
375 *
376 * Map the kernel address into a bio suitable for io to a block
377 * device. Returns an error pointer in case of error.
378 */
379static struct bio *bio_map_kern(struct request_queue *q, void *data,
380 unsigned int len, gfp_t gfp_mask)
381{
382 unsigned long kaddr = (unsigned long)data;
383 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
384 unsigned long start = kaddr >> PAGE_SHIFT;
385 const int nr_pages = end - start;
386 bool is_vmalloc = is_vmalloc_addr(data);
387 struct page *page;
388 int offset, i;
389 struct bio *bio;
390
391 bio = bio_kmalloc(gfp_mask, nr_pages);
392 if (!bio)
393 return ERR_PTR(-ENOMEM);
394
395 if (is_vmalloc) {
396 flush_kernel_vmap_range(data, len);
397 bio->bi_private = data;
398 }
399
400 offset = offset_in_page(kaddr);
401 for (i = 0; i < nr_pages; i++) {
402 unsigned int bytes = PAGE_SIZE - offset;
403
404 if (len <= 0)
405 break;
406
407 if (bytes > len)
408 bytes = len;
409
410 if (!is_vmalloc)
411 page = virt_to_page(data);
412 else
413 page = vmalloc_to_page(data);
414 if (bio_add_pc_page(q, bio, page, bytes,
415 offset) < bytes) {
416 /* we don't support partial mappings */
417 bio_put(bio);
418 return ERR_PTR(-EINVAL);
419 }
420
421 data += bytes;
422 len -= bytes;
423 offset = 0;
424 }
425
426 bio->bi_end_io = bio_map_kern_endio;
427 return bio;
428}
429
430static void bio_copy_kern_endio(struct bio *bio)
431{
432 bio_free_pages(bio);
433 bio_put(bio);
434}
435
436static void bio_copy_kern_endio_read(struct bio *bio)
437{
438 char *p = bio->bi_private;
439 struct bio_vec *bvec;
440 struct bvec_iter_all iter_all;
441
442 bio_for_each_segment_all(bvec, bio, iter_all) {
443 memcpy(p, page_address(bvec->bv_page), bvec->bv_len);
444 p += bvec->bv_len;
445 }
446
447 bio_copy_kern_endio(bio);
448}
449
450/**
451 * bio_copy_kern - copy kernel address into bio
452 * @q: the struct request_queue for the bio
453 * @data: pointer to buffer to copy
454 * @len: length in bytes
455 * @gfp_mask: allocation flags for bio and page allocation
456 * @reading: data direction is READ
457 *
458 * copy the kernel address into a bio suitable for io to a block
459 * device. Returns an error pointer in case of error.
460 */
461static struct bio *bio_copy_kern(struct request_queue *q, void *data,
462 unsigned int len, gfp_t gfp_mask, int reading)
463{
464 unsigned long kaddr = (unsigned long)data;
465 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
466 unsigned long start = kaddr >> PAGE_SHIFT;
467 struct bio *bio;
468 void *p = data;
469 int nr_pages = 0;
470
471 /*
472 * Overflow, abort
473 */
474 if (end < start)
475 return ERR_PTR(-EINVAL);
476
477 nr_pages = end - start;
478 bio = bio_kmalloc(gfp_mask, nr_pages);
479 if (!bio)
480 return ERR_PTR(-ENOMEM);
481
482 while (len) {
483 struct page *page;
484 unsigned int bytes = PAGE_SIZE;
485
486 if (bytes > len)
487 bytes = len;
488
489 page = alloc_page(q->bounce_gfp | gfp_mask);
490 if (!page)
491 goto cleanup;
492
493 if (!reading)
494 memcpy(page_address(page), p, bytes);
495
496 if (bio_add_pc_page(q, bio, page, bytes, 0) < bytes)
497 break;
498
499 len -= bytes;
500 p += bytes;
501 }
502
503 if (reading) {
504 bio->bi_end_io = bio_copy_kern_endio_read;
505 bio->bi_private = data;
506 } else {
507 bio->bi_end_io = bio_copy_kern_endio;
508 }
509
510 return bio;
511
512cleanup:
513 bio_free_pages(bio);
514 bio_put(bio);
515 return ERR_PTR(-ENOMEM);
516}
517
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200518/*
Jens Axboe0abc2a12017-12-18 15:40:44 +0800519 * Append a bio to a passthrough request. Only works if the bio can be merged
520 * into the request based on the driver constraints.
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200521 */
Jens Axboe0abc2a12017-12-18 15:40:44 +0800522int blk_rq_append_bio(struct request *rq, struct bio **bio)
Jens Axboe86db1e22008-01-29 14:53:40 +0100523{
Jens Axboe0abc2a12017-12-18 15:40:44 +0800524 struct bio *orig_bio = *bio;
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200525 struct bvec_iter iter;
526 struct bio_vec bv;
527 unsigned int nr_segs = 0;
Jens Axboe0abc2a12017-12-18 15:40:44 +0800528
529 blk_queue_bounce(rq->q, bio);
Christoph Hellwigcaa4b0242017-06-27 12:13:21 -0600530
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200531 bio_for_each_bvec(bv, *bio, iter)
532 nr_segs++;
533
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200534 if (!rq->bio) {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200535 blk_rq_bio_prep(rq, *bio, nr_segs);
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200536 } else {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200537 if (!ll_back_merge_fn(rq, *bio, nr_segs)) {
Jens Axboe0abc2a12017-12-18 15:40:44 +0800538 if (orig_bio != *bio) {
539 bio_put(*bio);
540 *bio = orig_bio;
541 }
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200542 return -EINVAL;
Jens Axboe0abc2a12017-12-18 15:40:44 +0800543 }
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200544
Jens Axboe0abc2a12017-12-18 15:40:44 +0800545 rq->biotail->bi_next = *bio;
546 rq->biotail = *bio;
547 rq->__data_len += (*bio)->bi_iter.bi_size;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000548 bio_crypt_free_ctx(*bio);
Jens Axboe86db1e22008-01-29 14:53:40 +0100549 }
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200550
Jens Axboe86db1e22008-01-29 14:53:40 +0100551 return 0;
552}
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200553EXPORT_SYMBOL(blk_rq_append_bio);
Jens Axboe86db1e22008-01-29 14:53:40 +0100554
Jens Axboe86db1e22008-01-29 14:53:40 +0100555/**
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100556 * blk_rq_map_user_iov - map user data to a request, for passthrough requests
Jens Axboe86db1e22008-01-29 14:53:40 +0100557 * @q: request queue where request should be inserted
558 * @rq: request to map data to
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900559 * @map_data: pointer to the rq_map_data holding pages (if necessary)
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100560 * @iter: iovec iterator
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900561 * @gfp_mask: memory allocation flags
Jens Axboe86db1e22008-01-29 14:53:40 +0100562 *
563 * Description:
Randy Dunlap710027a2008-08-19 20:13:11 +0200564 * Data will be mapped directly for zero copy I/O, if possible. Otherwise
Jens Axboe86db1e22008-01-29 14:53:40 +0100565 * a kernel bounce buffer is used.
566 *
Randy Dunlap710027a2008-08-19 20:13:11 +0200567 * A matching blk_rq_unmap_user() must be issued at the end of I/O, while
Jens Axboe86db1e22008-01-29 14:53:40 +0100568 * still in process context.
569 *
570 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
571 * before being submitted to the device, as pages mapped may be out of
572 * reach. It's the callers responsibility to make sure this happens. The
573 * original bio must be passed back in to blk_rq_unmap_user() for proper
574 * unmapping.
575 */
576int blk_rq_map_user_iov(struct request_queue *q, struct request *rq,
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100577 struct rq_map_data *map_data,
578 const struct iov_iter *iter, gfp_t gfp_mask)
Jens Axboe86db1e22008-01-29 14:53:40 +0100579{
Al Viro357f4352016-04-08 19:05:19 -0400580 bool copy = false;
581 unsigned long align = q->dma_pad_mask | queue_dma_alignment(q);
Christoph Hellwig4d6af732016-03-02 18:07:14 +0100582 struct bio *bio = NULL;
583 struct iov_iter i;
Douglas Gilbert69e09272018-01-14 17:00:48 -0500584 int ret = -EINVAL;
Jens Axboe86db1e22008-01-29 14:53:40 +0100585
Linus Torvaldsa0ac4022016-12-06 16:18:14 -0800586 if (!iter_is_iovec(iter))
587 goto fail;
588
Al Viro357f4352016-04-08 19:05:19 -0400589 if (map_data)
590 copy = true;
591 else if (iov_iter_alignment(iter) & align)
592 copy = true;
593 else if (queue_virt_boundary(q))
594 copy = queue_virt_boundary(q) & iov_iter_gap_alignment(iter);
FUJITA Tomonoriafdc1a72008-04-11 12:56:51 +0200595
Christoph Hellwig4d6af732016-03-02 18:07:14 +0100596 i = *iter;
597 do {
Christoph Hellwig7589ad62020-08-27 17:37:47 +0200598 if (copy)
599 ret = bio_copy_user_iov(rq, map_data, &i, gfp_mask);
600 else
601 ret = bio_map_user_iov(rq, &i, gfp_mask);
Christoph Hellwig4d6af732016-03-02 18:07:14 +0100602 if (ret)
603 goto unmap_rq;
604 if (!bio)
605 bio = rq->bio;
606 } while (iov_iter_count(&i));
Jens Axboe86db1e22008-01-29 14:53:40 +0100607
Jens Axboe86db1e22008-01-29 14:53:40 +0100608 return 0;
Christoph Hellwig4d6af732016-03-02 18:07:14 +0100609
610unmap_rq:
Yang Yingliang3b7995a2019-12-18 16:44:04 +0800611 blk_rq_unmap_user(bio);
Linus Torvaldsa0ac4022016-12-06 16:18:14 -0800612fail:
Christoph Hellwig4d6af732016-03-02 18:07:14 +0100613 rq->bio = NULL;
Douglas Gilbert69e09272018-01-14 17:00:48 -0500614 return ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100615}
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900616EXPORT_SYMBOL(blk_rq_map_user_iov);
Jens Axboe86db1e22008-01-29 14:53:40 +0100617
Christoph Hellwigddad8dd2015-01-18 16:16:29 +0100618int blk_rq_map_user(struct request_queue *q, struct request *rq,
619 struct rq_map_data *map_data, void __user *ubuf,
620 unsigned long len, gfp_t gfp_mask)
621{
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100622 struct iovec iov;
623 struct iov_iter i;
Al Viro8f7e8852015-03-21 20:06:04 -0400624 int ret = import_single_range(rq_data_dir(rq), ubuf, len, &iov, &i);
Christoph Hellwigddad8dd2015-01-18 16:16:29 +0100625
Al Viro8f7e8852015-03-21 20:06:04 -0400626 if (unlikely(ret < 0))
627 return ret;
Christoph Hellwigddad8dd2015-01-18 16:16:29 +0100628
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100629 return blk_rq_map_user_iov(q, rq, map_data, &i, gfp_mask);
Christoph Hellwigddad8dd2015-01-18 16:16:29 +0100630}
631EXPORT_SYMBOL(blk_rq_map_user);
632
Jens Axboe86db1e22008-01-29 14:53:40 +0100633/**
634 * blk_rq_unmap_user - unmap a request with user data
635 * @bio: start of bio list
636 *
637 * Description:
638 * Unmap a rq previously mapped by blk_rq_map_user(). The caller must
639 * supply the original rq->bio from the blk_rq_map_user() return, since
Randy Dunlap710027a2008-08-19 20:13:11 +0200640 * the I/O completion may have changed rq->bio.
Jens Axboe86db1e22008-01-29 14:53:40 +0100641 */
642int blk_rq_unmap_user(struct bio *bio)
643{
644 struct bio *mapped_bio;
645 int ret = 0, ret2;
646
647 while (bio) {
648 mapped_bio = bio;
649 if (unlikely(bio_flagged(bio, BIO_BOUNCED)))
650 mapped_bio = bio->bi_private;
651
Christoph Hellwig3310eeb2020-08-27 17:37:48 +0200652 if (bio->bi_private) {
Christoph Hellwig7b63c052020-08-27 17:37:46 +0200653 ret2 = bio_uncopy_user(mapped_bio);
654 if (ret2 && !ret)
655 ret = ret2;
Christoph Hellwig3310eeb2020-08-27 17:37:48 +0200656 } else {
657 bio_unmap_user(mapped_bio);
Christoph Hellwig7b63c052020-08-27 17:37:46 +0200658 }
Jens Axboe86db1e22008-01-29 14:53:40 +0100659
660 mapped_bio = bio;
661 bio = bio->bi_next;
662 bio_put(mapped_bio);
663 }
664
665 return ret;
666}
Jens Axboe86db1e22008-01-29 14:53:40 +0100667EXPORT_SYMBOL(blk_rq_unmap_user);
668
669/**
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100670 * blk_rq_map_kern - map kernel data to a request, for passthrough requests
Jens Axboe86db1e22008-01-29 14:53:40 +0100671 * @q: request queue where request should be inserted
672 * @rq: request to fill
673 * @kbuf: the kernel buffer
674 * @len: length of user data
675 * @gfp_mask: memory allocation flags
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200676 *
677 * Description:
678 * Data will be mapped directly if possible. Otherwise a bounce
Masanari Iidae2278672014-02-18 22:54:36 +0900679 * buffer is used. Can be called multiple times to append multiple
James Bottomley3a5a3922009-05-17 18:55:18 +0300680 * buffers.
Jens Axboe86db1e22008-01-29 14:53:40 +0100681 */
682int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf,
683 unsigned int len, gfp_t gfp_mask)
684{
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200685 int reading = rq_data_dir(rq) == READ;
Namhyung Kim14417792010-09-15 13:08:27 +0200686 unsigned long addr = (unsigned long) kbuf;
Jens Axboe0abc2a12017-12-18 15:40:44 +0800687 struct bio *bio, *orig_bio;
James Bottomley3a5a3922009-05-17 18:55:18 +0300688 int ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100689
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400690 if (len > (queue_max_hw_sectors(q) << 9))
Jens Axboe86db1e22008-01-29 14:53:40 +0100691 return -EINVAL;
692 if (!len || !kbuf)
693 return -EINVAL;
694
Christoph Hellwige64a0e12020-04-14 09:42:21 +0200695 if (!blk_rq_aligned(q, addr, len) || object_is_on_stack(kbuf))
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200696 bio = bio_copy_kern(q, kbuf, len, gfp_mask, reading);
697 else
698 bio = bio_map_kern(q, kbuf, len, gfp_mask);
699
Jens Axboe86db1e22008-01-29 14:53:40 +0100700 if (IS_ERR(bio))
701 return PTR_ERR(bio);
702
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100703 bio->bi_opf &= ~REQ_OP_MASK;
704 bio->bi_opf |= req_op(rq);
Jens Axboe86db1e22008-01-29 14:53:40 +0100705
Jens Axboe0abc2a12017-12-18 15:40:44 +0800706 orig_bio = bio;
707 ret = blk_rq_append_bio(rq, &bio);
James Bottomley3a5a3922009-05-17 18:55:18 +0300708 if (unlikely(ret)) {
709 /* request is too big */
Jens Axboe0abc2a12017-12-18 15:40:44 +0800710 bio_put(orig_bio);
James Bottomley3a5a3922009-05-17 18:55:18 +0300711 return ret;
712 }
713
Jens Axboe86db1e22008-01-29 14:53:40 +0100714 return 0;
715}
Jens Axboe86db1e22008-01-29 14:53:40 +0100716EXPORT_SYMBOL(blk_rq_map_kern);