blob: 954d73124b411a733891f00394c44a1ffaefd0b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jens Axboe0fe23472006-09-04 15:41:16 +02002 * Copyright (C) 2001 Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public Licens
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
16 *
17 */
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/bio.h>
21#include <linux/blkdev.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070022#include <linux/uio.h>
Tejun Heo852c7882012-03-05 13:15:27 -080023#include <linux/iocontext.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/kernel.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050027#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mempool.h>
29#include <linux/workqueue.h>
Tejun Heo852c7882012-03-05 13:15:27 -080030#include <linux/cgroup.h>
James Bottomley f1970ba2005-06-20 14:06:52 +020031#include <scsi/sg.h> /* for struct sg_iovec */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Li Zefan55782132009-06-09 13:43:05 +080033#include <trace/events/block.h>
Ingo Molnar0bfc2452008-11-26 11:59:56 +010034
Jens Axboe392ddc32008-12-23 12:42:54 +010035/*
36 * Test patch to inline a certain number of bi_io_vec's inside the bio
37 * itself, to shrink a bio data allocation from two mempool calls to one
38 */
39#define BIO_INLINE_VECS 4
40
Denis ChengRq6feef532008-10-09 08:57:05 +020041static mempool_t *bio_split_pool __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * if you change this list, also change bvec_alloc or things will
45 * break badly! cannot be bigger than what you can fit into an
46 * unsigned short
47 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define BV(x) { .nr_vecs = x, .name = "biovec-"__stringify(x) }
Martin K. Petersendf677142011-03-08 08:28:01 +010049static struct biovec_slab bvec_slabs[BIOVEC_NR_POOLS] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 BV(1), BV(4), BV(16), BV(64), BV(128), BV(BIO_MAX_PAGES),
51};
52#undef BV
53
54/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * fs_bio_set is the bio_set containing bio and iovec memory pools used by
56 * IO code that does not need private memory pools.
57 */
Martin K. Petersen51d654e2008-06-17 18:59:56 +020058struct bio_set *fs_bio_set;
Kent Overstreet3f86a822012-09-06 15:35:01 -070059EXPORT_SYMBOL(fs_bio_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jens Axboebb799ca2008-12-10 15:35:05 +010061/*
62 * Our slab pool management
63 */
64struct bio_slab {
65 struct kmem_cache *slab;
66 unsigned int slab_ref;
67 unsigned int slab_size;
68 char name[8];
69};
70static DEFINE_MUTEX(bio_slab_lock);
71static struct bio_slab *bio_slabs;
72static unsigned int bio_slab_nr, bio_slab_max;
73
74static struct kmem_cache *bio_find_or_create_slab(unsigned int extra_size)
75{
76 unsigned int sz = sizeof(struct bio) + extra_size;
77 struct kmem_cache *slab = NULL;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +020078 struct bio_slab *bslab, *new_bio_slabs;
Anna Leuschner386bc352012-10-22 21:53:36 +020079 unsigned int new_bio_slab_max;
Jens Axboebb799ca2008-12-10 15:35:05 +010080 unsigned int i, entry = -1;
81
82 mutex_lock(&bio_slab_lock);
83
84 i = 0;
85 while (i < bio_slab_nr) {
Thiago Farinaf06f1352010-01-19 14:07:09 +010086 bslab = &bio_slabs[i];
Jens Axboebb799ca2008-12-10 15:35:05 +010087
88 if (!bslab->slab && entry == -1)
89 entry = i;
90 else if (bslab->slab_size == sz) {
91 slab = bslab->slab;
92 bslab->slab_ref++;
93 break;
94 }
95 i++;
96 }
97
98 if (slab)
99 goto out_unlock;
100
101 if (bio_slab_nr == bio_slab_max && entry == -1) {
Anna Leuschner386bc352012-10-22 21:53:36 +0200102 new_bio_slab_max = bio_slab_max << 1;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200103 new_bio_slabs = krealloc(bio_slabs,
Anna Leuschner386bc352012-10-22 21:53:36 +0200104 new_bio_slab_max * sizeof(struct bio_slab),
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200105 GFP_KERNEL);
106 if (!new_bio_slabs)
Jens Axboebb799ca2008-12-10 15:35:05 +0100107 goto out_unlock;
Anna Leuschner386bc352012-10-22 21:53:36 +0200108 bio_slab_max = new_bio_slab_max;
Alexey Khoroshilov389d7b22012-08-09 15:19:25 +0200109 bio_slabs = new_bio_slabs;
Jens Axboebb799ca2008-12-10 15:35:05 +0100110 }
111 if (entry == -1)
112 entry = bio_slab_nr++;
113
114 bslab = &bio_slabs[entry];
115
116 snprintf(bslab->name, sizeof(bslab->name), "bio-%d", entry);
117 slab = kmem_cache_create(bslab->name, sz, 0, SLAB_HWCACHE_ALIGN, NULL);
118 if (!slab)
119 goto out_unlock;
120
Mandeep Singh Baines80cdc6d2011-03-22 16:33:54 -0700121 printk(KERN_INFO "bio: create slab <%s> at %d\n", bslab->name, entry);
Jens Axboebb799ca2008-12-10 15:35:05 +0100122 bslab->slab = slab;
123 bslab->slab_ref = 1;
124 bslab->slab_size = sz;
125out_unlock:
126 mutex_unlock(&bio_slab_lock);
127 return slab;
128}
129
130static void bio_put_slab(struct bio_set *bs)
131{
132 struct bio_slab *bslab = NULL;
133 unsigned int i;
134
135 mutex_lock(&bio_slab_lock);
136
137 for (i = 0; i < bio_slab_nr; i++) {
138 if (bs->bio_slab == bio_slabs[i].slab) {
139 bslab = &bio_slabs[i];
140 break;
141 }
142 }
143
144 if (WARN(!bslab, KERN_ERR "bio: unable to find slab!\n"))
145 goto out;
146
147 WARN_ON(!bslab->slab_ref);
148
149 if (--bslab->slab_ref)
150 goto out;
151
152 kmem_cache_destroy(bslab->slab);
153 bslab->slab = NULL;
154
155out:
156 mutex_unlock(&bio_slab_lock);
157}
158
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200159unsigned int bvec_nr_vecs(unsigned short idx)
160{
161 return bvec_slabs[idx].nr_vecs;
162}
163
Jens Axboebb799ca2008-12-10 15:35:05 +0100164void bvec_free_bs(struct bio_set *bs, struct bio_vec *bv, unsigned int idx)
165{
166 BIO_BUG_ON(idx >= BIOVEC_NR_POOLS);
167
168 if (idx == BIOVEC_MAX_IDX)
169 mempool_free(bv, bs->bvec_pool);
170 else {
171 struct biovec_slab *bvs = bvec_slabs + idx;
172
173 kmem_cache_free(bvs->slab, bv);
174 }
175}
176
Jens Axboe7ff93452008-12-11 11:53:43 +0100177struct bio_vec *bvec_alloc_bs(gfp_t gfp_mask, int nr, unsigned long *idx,
178 struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct bio_vec *bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /*
Jens Axboe7ff93452008-12-11 11:53:43 +0100183 * see comment near bvec_array define!
184 */
185 switch (nr) {
186 case 1:
187 *idx = 0;
188 break;
189 case 2 ... 4:
190 *idx = 1;
191 break;
192 case 5 ... 16:
193 *idx = 2;
194 break;
195 case 17 ... 64:
196 *idx = 3;
197 break;
198 case 65 ... 128:
199 *idx = 4;
200 break;
201 case 129 ... BIO_MAX_PAGES:
202 *idx = 5;
203 break;
204 default:
205 return NULL;
206 }
207
208 /*
209 * idx now points to the pool we want to allocate from. only the
210 * 1-vec entry pool is mempool backed.
211 */
212 if (*idx == BIOVEC_MAX_IDX) {
213fallback:
214 bvl = mempool_alloc(bs->bvec_pool, gfp_mask);
215 } else {
216 struct biovec_slab *bvs = bvec_slabs + *idx;
217 gfp_t __gfp_mask = gfp_mask & ~(__GFP_WAIT | __GFP_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200219 /*
Jens Axboe7ff93452008-12-11 11:53:43 +0100220 * Make this allocation restricted and don't dump info on
221 * allocation failures, since we'll fallback to the mempool
222 * in case of failure.
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200223 */
Jens Axboe7ff93452008-12-11 11:53:43 +0100224 __gfp_mask |= __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
225
226 /*
227 * Try a slab allocation. If this fails and __GFP_WAIT
228 * is set, retry with the 1-entry mempool
229 */
230 bvl = kmem_cache_alloc(bvs->slab, __gfp_mask);
231 if (unlikely(!bvl && (gfp_mask & __GFP_WAIT))) {
232 *idx = BIOVEC_MAX_IDX;
233 goto fallback;
234 }
235 }
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return bvl;
238}
239
Kent Overstreet4254bba2012-09-06 15:35:00 -0700240static void __bio_free(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Kent Overstreet4254bba2012-09-06 15:35:00 -0700242 bio_disassociate_task(bio);
Jens Axboe992c5dd2007-07-18 13:18:08 +0200243
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200244 if (bio_integrity(bio))
Kent Overstreet1e2a410f2012-09-06 15:34:56 -0700245 bio_integrity_free(bio);
Kent Overstreet4254bba2012-09-06 15:35:00 -0700246}
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200247
Kent Overstreet4254bba2012-09-06 15:35:00 -0700248static void bio_free(struct bio *bio)
249{
250 struct bio_set *bs = bio->bi_pool;
251 void *p;
252
253 __bio_free(bio);
254
255 if (bs) {
256 if (bio_has_allocated_vec(bio))
257 bvec_free_bs(bs, bio->bi_io_vec, BIO_POOL_IDX(bio));
258
259 /*
260 * If we have front padding, adjust the bio pointer before freeing
261 */
262 p = bio;
Jens Axboebb799ca2008-12-10 15:35:05 +0100263 p -= bs->front_pad;
264
Kent Overstreet4254bba2012-09-06 15:35:00 -0700265 mempool_free(p, bs->bio_pool);
266 } else {
267 /* Bio was allocated by bio_kmalloc() */
268 kfree(bio);
269 }
Peter Osterlund36763472005-09-06 15:16:42 -0700270}
271
Arjan van de Ven858119e2006-01-14 13:20:43 -0800272void bio_init(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jens Axboe2b94de52007-07-18 13:14:03 +0200274 memset(bio, 0, sizeof(*bio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 bio->bi_flags = 1 << BIO_UPTODATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 atomic_set(&bio->bi_cnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200278EXPORT_SYMBOL(bio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/**
Kent Overstreetf44b48c2012-09-06 15:34:58 -0700281 * bio_reset - reinitialize a bio
282 * @bio: bio to reset
283 *
284 * Description:
285 * After calling bio_reset(), @bio will be in the same state as a freshly
286 * allocated bio returned bio bio_alloc_bioset() - the only fields that are
287 * preserved are the ones that are initialized by bio_alloc_bioset(). See
288 * comment in struct bio.
289 */
290void bio_reset(struct bio *bio)
291{
292 unsigned long flags = bio->bi_flags & (~0UL << BIO_RESET_BITS);
293
Kent Overstreet4254bba2012-09-06 15:35:00 -0700294 __bio_free(bio);
Kent Overstreetf44b48c2012-09-06 15:34:58 -0700295
296 memset(bio, 0, BIO_RESET_BYTES);
297 bio->bi_flags = flags|(1 << BIO_UPTODATE);
298}
299EXPORT_SYMBOL(bio_reset);
300
301/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * bio_alloc_bioset - allocate a bio for I/O
303 * @gfp_mask: the GFP_ mask given to the slab allocator
304 * @nr_iovecs: number of iovecs to pre-allocate
Jaak Ristiojadb18efa2010-01-15 12:05:07 +0200305 * @bs: the bio_set to allocate from.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 *
307 * Description:
Kent Overstreet3f86a822012-09-06 15:35:01 -0700308 * If @bs is NULL, uses kmalloc() to allocate the bio; else the allocation is
309 * backed by the @bs's mempool.
310 *
311 * When @bs is not NULL, if %__GFP_WAIT is set then bio_alloc will always be
312 * able to allocate a bio. This is due to the mempool guarantees. To make this
313 * work, callers must never allocate more than 1 bio at a time from this pool.
314 * Callers that need to allocate more than 1 bio must always submit the
315 * previously allocated bio for IO before attempting to allocate a new one.
316 * Failure to do so can cause deadlocks under memory pressure.
317 *
318 * RETURNS:
319 * Pointer to new bio on success, NULL on failure.
320 */
Al Virodd0fc662005-10-07 07:46:04 +0100321struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Kent Overstreet3f86a822012-09-06 15:35:01 -0700323 unsigned front_pad;
324 unsigned inline_vecs;
Tejun Heo451a9eb2009-04-15 19:50:51 +0200325 unsigned long idx = BIO_POOL_NONE;
Ingo Molnar34053972009-02-21 11:16:36 +0100326 struct bio_vec *bvl = NULL;
Tejun Heo451a9eb2009-04-15 19:50:51 +0200327 struct bio *bio;
328 void *p;
Jens Axboe0a0d96b2008-09-11 13:17:37 +0200329
Kent Overstreet3f86a822012-09-06 15:35:01 -0700330 if (!bs) {
331 if (nr_iovecs > UIO_MAXIOV)
332 return NULL;
333
334 p = kmalloc(sizeof(struct bio) +
335 nr_iovecs * sizeof(struct bio_vec),
336 gfp_mask);
337 front_pad = 0;
338 inline_vecs = nr_iovecs;
339 } else {
340 p = mempool_alloc(bs->bio_pool, gfp_mask);
341 front_pad = bs->front_pad;
342 inline_vecs = BIO_INLINE_VECS;
343 }
344
Tejun Heo451a9eb2009-04-15 19:50:51 +0200345 if (unlikely(!p))
346 return NULL;
Ingo Molnar34053972009-02-21 11:16:36 +0100347
Kent Overstreet3f86a822012-09-06 15:35:01 -0700348 bio = p + front_pad;
Ingo Molnar34053972009-02-21 11:16:36 +0100349 bio_init(bio);
350
Kent Overstreet3f86a822012-09-06 15:35:01 -0700351 if (nr_iovecs > inline_vecs) {
Ingo Molnar34053972009-02-21 11:16:36 +0100352 bvl = bvec_alloc_bs(gfp_mask, nr_iovecs, &idx, bs);
353 if (unlikely(!bvl))
354 goto err_free;
Kent Overstreet3f86a822012-09-06 15:35:01 -0700355 } else if (nr_iovecs) {
356 bvl = bio->bi_inline_vecs;
Ingo Molnar34053972009-02-21 11:16:36 +0100357 }
Kent Overstreet3f86a822012-09-06 15:35:01 -0700358
359 bio->bi_pool = bs;
Ingo Molnar34053972009-02-21 11:16:36 +0100360 bio->bi_flags |= idx << BIO_POOL_OFFSET;
361 bio->bi_max_vecs = nr_iovecs;
Ingo Molnar34053972009-02-21 11:16:36 +0100362 bio->bi_io_vec = bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return bio;
Ingo Molnar34053972009-02-21 11:16:36 +0100364
365err_free:
Tejun Heo451a9eb2009-04-15 19:50:51 +0200366 mempool_free(p, bs->bio_pool);
Ingo Molnar34053972009-02-21 11:16:36 +0100367 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200369EXPORT_SYMBOL(bio_alloc_bioset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371void zero_fill_bio(struct bio *bio)
372{
373 unsigned long flags;
374 struct bio_vec *bv;
375 int i;
376
377 bio_for_each_segment(bv, bio, i) {
378 char *data = bvec_kmap_irq(bv, &flags);
379 memset(data, 0, bv->bv_len);
380 flush_dcache_page(bv->bv_page);
381 bvec_kunmap_irq(data, &flags);
382 }
383}
384EXPORT_SYMBOL(zero_fill_bio);
385
386/**
387 * bio_put - release a reference to a bio
388 * @bio: bio to release reference to
389 *
390 * Description:
391 * Put a reference to a &struct bio, either one you have gotten with
Alberto Bertogliad0bf112009-11-02 11:39:22 +0100392 * bio_alloc, bio_get or bio_clone. The last put of a bio will free it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 **/
394void bio_put(struct bio *bio)
395{
396 BIO_BUG_ON(!atomic_read(&bio->bi_cnt));
397
398 /*
399 * last put frees it
400 */
Kent Overstreet4254bba2012-09-06 15:35:00 -0700401 if (atomic_dec_and_test(&bio->bi_cnt))
402 bio_free(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200404EXPORT_SYMBOL(bio_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Jens Axboe165125e2007-07-24 09:28:11 +0200406inline int bio_phys_segments(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
409 blk_recount_segments(q, bio);
410
411 return bio->bi_phys_segments;
412}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200413EXPORT_SYMBOL(bio_phys_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/**
416 * __bio_clone - clone a bio
417 * @bio: destination bio
418 * @bio_src: bio to clone
419 *
420 * Clone a &bio. Caller will own the returned bio, but not
421 * the actual data it points to. Reference count of returned
422 * bio will be one.
423 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800424void __bio_clone(struct bio *bio, struct bio *bio_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Andrew Mortone525e152005-08-07 09:42:12 -0700426 memcpy(bio->bi_io_vec, bio_src->bi_io_vec,
427 bio_src->bi_max_vecs * sizeof(struct bio_vec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Jens Axboe5d840702008-01-25 12:44:44 +0100429 /*
430 * most users will be overriding ->bi_bdev with a new target,
431 * so we don't set nor calculate new physical/hw segment counts here
432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 bio->bi_sector = bio_src->bi_sector;
434 bio->bi_bdev = bio_src->bi_bdev;
435 bio->bi_flags |= 1 << BIO_CLONED;
436 bio->bi_rw = bio_src->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 bio->bi_vcnt = bio_src->bi_vcnt;
438 bio->bi_size = bio_src->bi_size;
Andrew Mortona5453be2005-07-28 01:07:18 -0700439 bio->bi_idx = bio_src->bi_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200441EXPORT_SYMBOL(__bio_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443/**
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700444 * bio_clone_bioset - clone a bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * @bio: bio to clone
446 * @gfp_mask: allocation priority
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700447 * @bs: bio_set to allocate from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 *
449 * Like __bio_clone, only also allocates the returned bio
450 */
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700451struct bio *bio_clone_bioset(struct bio *bio, gfp_t gfp_mask,
452 struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700454 struct bio *b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700456 b = bio_alloc_bioset(gfp_mask, bio->bi_max_vecs, bs);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200457 if (!b)
458 return NULL;
459
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200460 __bio_clone(b, bio);
461
462 if (bio_integrity(bio)) {
463 int ret;
464
Kent Overstreet1e2a410f2012-09-06 15:34:56 -0700465 ret = bio_integrity_clone(b, bio, gfp_mask);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200466
Li Zefan059ea332009-03-09 10:42:45 +0100467 if (ret < 0) {
468 bio_put(b);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200469 return NULL;
Li Zefan059ea332009-03-09 10:42:45 +0100470 }
Peter Osterlund36763472005-09-06 15:16:42 -0700471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 return b;
474}
Kent Overstreetbf800ef2012-09-06 15:35:02 -0700475EXPORT_SYMBOL(bio_clone_bioset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477/**
478 * bio_get_nr_vecs - return approx number of vecs
479 * @bdev: I/O target
480 *
481 * Return the approximate number of pages we can send to this target.
482 * There's no guarantee that you will be able to fit this number of pages
483 * into a bio, it does not account for dynamic restrictions that vary
484 * on offset.
485 */
486int bio_get_nr_vecs(struct block_device *bdev)
487{
Jens Axboe165125e2007-07-24 09:28:11 +0200488 struct request_queue *q = bdev_get_queue(bdev);
Bernd Schubertf908ee92012-05-11 16:36:44 +0200489 int nr_pages;
490
491 nr_pages = min_t(unsigned,
Kent Overstreet5abebfd2012-02-08 22:07:18 +0100492 queue_max_segments(q),
493 queue_max_sectors(q) / (PAGE_SIZE >> 9) + 1);
Bernd Schubertf908ee92012-05-11 16:36:44 +0200494
495 return min_t(unsigned, nr_pages, BIO_MAX_PAGES);
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200498EXPORT_SYMBOL(bio_get_nr_vecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Jens Axboe165125e2007-07-24 09:28:11 +0200500static int __bio_add_page(struct request_queue *q, struct bio *bio, struct page
Mike Christiedefd94b2005-12-05 02:37:06 -0600501 *page, unsigned int len, unsigned int offset,
502 unsigned short max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 int retried_segments = 0;
505 struct bio_vec *bvec;
506
507 /*
508 * cloned bio must not modify vec list
509 */
510 if (unlikely(bio_flagged(bio, BIO_CLONED)))
511 return 0;
512
Jens Axboe80cfd542006-01-06 09:43:28 +0100513 if (((bio->bi_size + len) >> 9) > max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return 0;
515
Jens Axboe80cfd542006-01-06 09:43:28 +0100516 /*
517 * For filesystems with a blocksize smaller than the pagesize
518 * we will often be called with the same page as last time and
519 * a consecutive offset. Optimize this special case.
520 */
521 if (bio->bi_vcnt > 0) {
522 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
523
524 if (page == prev->bv_page &&
525 offset == prev->bv_offset + prev->bv_len) {
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300526 unsigned int prev_bv_len = prev->bv_len;
Jens Axboe80cfd542006-01-06 09:43:28 +0100527 prev->bv_len += len;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200528
529 if (q->merge_bvec_fn) {
530 struct bvec_merge_data bvm = {
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300531 /* prev_bvec is already charged in
532 bi_size, discharge it in order to
533 simulate merging updated prev_bvec
534 as new bvec. */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200535 .bi_bdev = bio->bi_bdev,
536 .bi_sector = bio->bi_sector,
Dmitry Monakhov1d616582010-01-27 22:44:36 +0300537 .bi_size = bio->bi_size - prev_bv_len,
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200538 .bi_rw = bio->bi_rw,
539 };
540
Dmitry Monakhov8bf8c372010-03-03 06:28:06 +0300541 if (q->merge_bvec_fn(q, &bvm, prev) < prev->bv_len) {
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200542 prev->bv_len -= len;
543 return 0;
544 }
Jens Axboe80cfd542006-01-06 09:43:28 +0100545 }
546
547 goto done;
548 }
549 }
550
551 if (bio->bi_vcnt >= bio->bi_max_vecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 0;
553
554 /*
555 * we might lose a segment or two here, but rather that than
556 * make this too complex.
557 */
558
Martin K. Petersen8a783622010-02-26 00:20:39 -0500559 while (bio->bi_phys_segments >= queue_max_segments(q)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 if (retried_segments)
562 return 0;
563
564 retried_segments = 1;
565 blk_recount_segments(q, bio);
566 }
567
568 /*
569 * setup the new entry, we might clear it again later if we
570 * cannot add the page
571 */
572 bvec = &bio->bi_io_vec[bio->bi_vcnt];
573 bvec->bv_page = page;
574 bvec->bv_len = len;
575 bvec->bv_offset = offset;
576
577 /*
578 * if queue has other restrictions (eg varying max sector size
579 * depending on offset), it can specify a merge_bvec_fn in the
580 * queue to get further control
581 */
582 if (q->merge_bvec_fn) {
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200583 struct bvec_merge_data bvm = {
584 .bi_bdev = bio->bi_bdev,
585 .bi_sector = bio->bi_sector,
586 .bi_size = bio->bi_size,
587 .bi_rw = bio->bi_rw,
588 };
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /*
591 * merge_bvec_fn() returns number of bytes it can accept
592 * at this offset
593 */
Dmitry Monakhov8bf8c372010-03-03 06:28:06 +0300594 if (q->merge_bvec_fn(q, &bvm, bvec) < bvec->bv_len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 bvec->bv_page = NULL;
596 bvec->bv_len = 0;
597 bvec->bv_offset = 0;
598 return 0;
599 }
600 }
601
602 /* If we may be able to merge these biovecs, force a recount */
Mikulas Patockab8b3e162008-08-15 10:15:19 +0200603 if (bio->bi_vcnt && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
605
606 bio->bi_vcnt++;
607 bio->bi_phys_segments++;
Jens Axboe80cfd542006-01-06 09:43:28 +0100608 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 bio->bi_size += len;
610 return len;
611}
612
613/**
Mike Christie6e68af62005-11-11 05:30:27 -0600614 * bio_add_pc_page - attempt to add page to bio
Jens Axboefddfdea2006-01-31 15:24:34 +0100615 * @q: the target queue
Mike Christie6e68af62005-11-11 05:30:27 -0600616 * @bio: destination bio
617 * @page: page to add
618 * @len: vec entry length
619 * @offset: vec entry offset
620 *
621 * Attempt to add a page to the bio_vec maplist. This can fail for a
Andreas Gruenbacherc6428082011-05-27 14:52:09 +0200622 * number of reasons, such as the bio being full or target block device
623 * limitations. The target block device must allow bio's up to PAGE_SIZE,
624 * so it is always possible to add a single page to an empty bio.
625 *
626 * This should only be used by REQ_PC bios.
Mike Christie6e68af62005-11-11 05:30:27 -0600627 */
Jens Axboe165125e2007-07-24 09:28:11 +0200628int bio_add_pc_page(struct request_queue *q, struct bio *bio, struct page *page,
Mike Christie6e68af62005-11-11 05:30:27 -0600629 unsigned int len, unsigned int offset)
630{
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400631 return __bio_add_page(q, bio, page, len, offset,
632 queue_max_hw_sectors(q));
Mike Christie6e68af62005-11-11 05:30:27 -0600633}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200634EXPORT_SYMBOL(bio_add_pc_page);
Mike Christie6e68af62005-11-11 05:30:27 -0600635
636/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * bio_add_page - attempt to add page to bio
638 * @bio: destination bio
639 * @page: page to add
640 * @len: vec entry length
641 * @offset: vec entry offset
642 *
643 * Attempt to add a page to the bio_vec maplist. This can fail for a
Andreas Gruenbacherc6428082011-05-27 14:52:09 +0200644 * number of reasons, such as the bio being full or target block device
645 * limitations. The target block device must allow bio's up to PAGE_SIZE,
646 * so it is always possible to add a single page to an empty bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
648int bio_add_page(struct bio *bio, struct page *page, unsigned int len,
649 unsigned int offset)
650{
Mike Christiedefd94b2005-12-05 02:37:06 -0600651 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Martin K. Petersenae03bf62009-05-22 17:17:50 -0400652 return __bio_add_page(q, bio, page, len, offset, queue_max_sectors(q));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200654EXPORT_SYMBOL(bio_add_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656struct bio_map_data {
657 struct bio_vec *iovecs;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200658 struct sg_iovec *sgvecs;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900659 int nr_sgvecs;
660 int is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661};
662
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200663static void bio_set_map_data(struct bio_map_data *bmd, struct bio *bio,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900664 struct sg_iovec *iov, int iov_count,
665 int is_our_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 memcpy(bmd->iovecs, bio->bi_io_vec, sizeof(struct bio_vec) * bio->bi_vcnt);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200668 memcpy(bmd->sgvecs, iov, sizeof(struct sg_iovec) * iov_count);
669 bmd->nr_sgvecs = iov_count;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900670 bmd->is_our_pages = is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 bio->bi_private = bmd;
672}
673
674static void bio_free_map_data(struct bio_map_data *bmd)
675{
676 kfree(bmd->iovecs);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200677 kfree(bmd->sgvecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 kfree(bmd);
679}
680
Dan Carpenter121f0992011-11-16 09:21:50 +0100681static struct bio_map_data *bio_alloc_map_data(int nr_segs,
682 unsigned int iov_count,
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200683 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Jens Axboef3f63c12010-10-29 11:46:56 -0600685 struct bio_map_data *bmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Jens Axboef3f63c12010-10-29 11:46:56 -0600687 if (iov_count > UIO_MAXIOV)
688 return NULL;
689
690 bmd = kmalloc(sizeof(*bmd), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (!bmd)
692 return NULL;
693
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200694 bmd->iovecs = kmalloc(sizeof(struct bio_vec) * nr_segs, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200695 if (!bmd->iovecs) {
696 kfree(bmd);
697 return NULL;
698 }
699
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200700 bmd->sgvecs = kmalloc(sizeof(struct sg_iovec) * iov_count, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200701 if (bmd->sgvecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return bmd;
703
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200704 kfree(bmd->iovecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 kfree(bmd);
706 return NULL;
707}
708
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200709static int __bio_copy_iov(struct bio *bio, struct bio_vec *iovecs,
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200710 struct sg_iovec *iov, int iov_count,
711 int to_user, int from_user, int do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200712{
713 int ret = 0, i;
714 struct bio_vec *bvec;
715 int iov_idx = 0;
716 unsigned int iov_off = 0;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200717
718 __bio_for_each_segment(bvec, bio, i, 0) {
719 char *bv_addr = page_address(bvec->bv_page);
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200720 unsigned int bv_len = iovecs[i].bv_len;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200721
722 while (bv_len && iov_idx < iov_count) {
723 unsigned int bytes;
Michal Simek0e0c6212009-06-10 12:57:07 -0700724 char __user *iov_addr;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200725
726 bytes = min_t(unsigned int,
727 iov[iov_idx].iov_len - iov_off, bv_len);
728 iov_addr = iov[iov_idx].iov_base + iov_off;
729
730 if (!ret) {
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200731 if (to_user)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200732 ret = copy_to_user(iov_addr, bv_addr,
733 bytes);
734
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200735 if (from_user)
736 ret = copy_from_user(bv_addr, iov_addr,
737 bytes);
738
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200739 if (ret)
740 ret = -EFAULT;
741 }
742
743 bv_len -= bytes;
744 bv_addr += bytes;
745 iov_addr += bytes;
746 iov_off += bytes;
747
748 if (iov[iov_idx].iov_len == iov_off) {
749 iov_idx++;
750 iov_off = 0;
751 }
752 }
753
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900754 if (do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200755 __free_page(bvec->bv_page);
756 }
757
758 return ret;
759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/**
762 * bio_uncopy_user - finish previously mapped bio
763 * @bio: bio being terminated
764 *
765 * Free pages allocated from bio_copy_user() and write back data
766 * to user space in case of a read.
767 */
768int bio_uncopy_user(struct bio *bio)
769{
770 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonori81882762008-09-02 16:20:19 +0900771 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
FUJITA Tomonori81882762008-09-02 16:20:19 +0900773 if (!bio_flagged(bio, BIO_NULL_MAPPED))
774 ret = __bio_copy_iov(bio, bmd->iovecs, bmd->sgvecs,
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200775 bmd->nr_sgvecs, bio_data_dir(bio) == READ,
776 0, bmd->is_our_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 bio_free_map_data(bmd);
778 bio_put(bio);
779 return ret;
780}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200781EXPORT_SYMBOL(bio_uncopy_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783/**
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200784 * bio_copy_user_iov - copy user data to bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900786 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200787 * @iov: the iovec.
788 * @iov_count: number of elements in the iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900790 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 *
792 * Prepares and returns a bio for indirect user io, bouncing data
793 * to/from kernel pages as necessary. Must be paired with
794 * call bio_uncopy_user() on io completion.
795 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900796struct bio *bio_copy_user_iov(struct request_queue *q,
797 struct rq_map_data *map_data,
798 struct sg_iovec *iov, int iov_count,
799 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct bio_map_data *bmd;
802 struct bio_vec *bvec;
803 struct page *page;
804 struct bio *bio;
805 int i, ret;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200806 int nr_pages = 0;
807 unsigned int len = 0;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900808 unsigned int offset = map_data ? map_data->offset & ~PAGE_MASK : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200810 for (i = 0; i < iov_count; i++) {
811 unsigned long uaddr;
812 unsigned long end;
813 unsigned long start;
814
815 uaddr = (unsigned long)iov[i].iov_base;
816 end = (uaddr + iov[i].iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
817 start = uaddr >> PAGE_SHIFT;
818
Jens Axboecb4644c2010-11-10 14:36:25 +0100819 /*
820 * Overflow, abort
821 */
822 if (end < start)
823 return ERR_PTR(-EINVAL);
824
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200825 nr_pages += end - start;
826 len += iov[i].iov_len;
827 }
828
FUJITA Tomonori69838722009-04-28 20:24:29 +0200829 if (offset)
830 nr_pages++;
831
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900832 bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (!bmd)
834 return ERR_PTR(-ENOMEM);
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 ret = -ENOMEM;
Tejun Heoa9e9dc22009-04-15 22:10:27 +0900837 bio = bio_kmalloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (!bio)
839 goto out_bmd;
840
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200841 if (!write_to_vm)
842 bio->bi_rw |= REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 ret = 0;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900845
846 if (map_data) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +0900847 nr_pages = 1 << map_data->page_order;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900848 i = map_data->offset / PAGE_SIZE;
849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 while (len) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +0900851 unsigned int bytes = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900853 bytes -= offset;
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (bytes > len)
856 bytes = len;
857
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900858 if (map_data) {
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +0900859 if (i == map_data->nr_entries * nr_pages) {
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900860 ret = -ENOMEM;
861 break;
862 }
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +0900863
864 page = map_data->pages[i / nr_pages];
865 page += (i % nr_pages);
866
867 i++;
868 } else {
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900869 page = alloc_page(q->bounce_gfp | gfp_mask);
FUJITA Tomonorie623ddb2008-12-18 14:49:36 +0900870 if (!page) {
871 ret = -ENOMEM;
872 break;
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900876 if (bio_add_pc_page(q, bio, page, bytes, offset) < bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 len -= bytes;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900880 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882
883 if (ret)
884 goto cleanup;
885
886 /*
887 * success
888 */
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200889 if ((!write_to_vm && (!map_data || !map_data->null_mapped)) ||
890 (map_data && map_data->from_user)) {
891 ret = __bio_copy_iov(bio, bio->bi_io_vec, iov, iov_count, 0, 1, 0);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200892 if (ret)
893 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900896 bio_set_map_data(bmd, bio, iov, iov_count, map_data ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return bio;
898cleanup:
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900899 if (!map_data)
900 bio_for_each_segment(bvec, bio, i)
901 __free_page(bvec->bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 bio_put(bio);
904out_bmd:
905 bio_free_map_data(bmd);
906 return ERR_PTR(ret);
907}
908
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200909/**
910 * bio_copy_user - copy user data to bio
911 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900912 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200913 * @uaddr: start of user address
914 * @len: length in bytes
915 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900916 * @gfp_mask: memory allocation flags
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200917 *
918 * Prepares and returns a bio for indirect user io, bouncing data
919 * to/from kernel pages as necessary. Must be paired with
920 * call bio_uncopy_user() on io completion.
921 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900922struct bio *bio_copy_user(struct request_queue *q, struct rq_map_data *map_data,
923 unsigned long uaddr, unsigned int len,
924 int write_to_vm, gfp_t gfp_mask)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200925{
926 struct sg_iovec iov;
927
928 iov.iov_base = (void __user *)uaddr;
929 iov.iov_len = len;
930
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900931 return bio_copy_user_iov(q, map_data, &iov, 1, write_to_vm, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200932}
H Hartley Sweetena112a712009-09-26 16:19:21 +0200933EXPORT_SYMBOL(bio_copy_user);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200934
Jens Axboe165125e2007-07-24 09:28:11 +0200935static struct bio *__bio_map_user_iov(struct request_queue *q,
James Bottomley f1970ba2005-06-20 14:06:52 +0200936 struct block_device *bdev,
937 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900938 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
James Bottomley f1970ba2005-06-20 14:06:52 +0200940 int i, j;
941 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct page **pages;
943 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +0200944 int cur_page = 0;
945 int ret, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
James Bottomley f1970ba2005-06-20 14:06:52 +0200947 for (i = 0; i < iov_count; i++) {
948 unsigned long uaddr = (unsigned long)iov[i].iov_base;
949 unsigned long len = iov[i].iov_len;
950 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
951 unsigned long start = uaddr >> PAGE_SHIFT;
952
Jens Axboecb4644c2010-11-10 14:36:25 +0100953 /*
954 * Overflow, abort
955 */
956 if (end < start)
957 return ERR_PTR(-EINVAL);
958
James Bottomley f1970ba2005-06-20 14:06:52 +0200959 nr_pages += end - start;
960 /*
Mike Christiead2d7222006-12-01 10:40:20 +0100961 * buffer must be aligned to at least hardsector size for now
James Bottomley f1970ba2005-06-20 14:06:52 +0200962 */
Mike Christiead2d7222006-12-01 10:40:20 +0100963 if (uaddr & queue_dma_alignment(q))
James Bottomley f1970ba2005-06-20 14:06:52 +0200964 return ERR_PTR(-EINVAL);
965 }
966
967 if (!nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return ERR_PTR(-EINVAL);
969
Tejun Heoa9e9dc22009-04-15 22:10:27 +0900970 bio = bio_kmalloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (!bio)
972 return ERR_PTR(-ENOMEM);
973
974 ret = -ENOMEM;
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900975 pages = kcalloc(nr_pages, sizeof(struct page *), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!pages)
977 goto out;
978
James Bottomley f1970ba2005-06-20 14:06:52 +0200979 for (i = 0; i < iov_count; i++) {
980 unsigned long uaddr = (unsigned long)iov[i].iov_base;
981 unsigned long len = iov[i].iov_len;
982 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
983 unsigned long start = uaddr >> PAGE_SHIFT;
984 const int local_nr_pages = end - start;
985 const int page_limit = cur_page + local_nr_pages;
Jens Axboecb4644c2010-11-10 14:36:25 +0100986
Nick Pigginf5dd33c2008-07-25 19:45:25 -0700987 ret = get_user_pages_fast(uaddr, local_nr_pages,
988 write_to_vm, &pages[cur_page]);
Jens Axboe99172152006-06-16 13:02:29 +0200989 if (ret < local_nr_pages) {
990 ret = -EFAULT;
James Bottomley f1970ba2005-06-20 14:06:52 +0200991 goto out_unmap;
Jens Axboe99172152006-06-16 13:02:29 +0200992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
James Bottomley f1970ba2005-06-20 14:06:52 +0200994 offset = uaddr & ~PAGE_MASK;
995 for (j = cur_page; j < page_limit; j++) {
996 unsigned int bytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
James Bottomley f1970ba2005-06-20 14:06:52 +0200998 if (len <= 0)
999 break;
1000
1001 if (bytes > len)
1002 bytes = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
James Bottomley f1970ba2005-06-20 14:06:52 +02001004 /*
1005 * sorry...
1006 */
Mike Christiedefd94b2005-12-05 02:37:06 -06001007 if (bio_add_pc_page(q, bio, pages[j], bytes, offset) <
1008 bytes)
James Bottomley f1970ba2005-06-20 14:06:52 +02001009 break;
1010
1011 len -= bytes;
1012 offset = 0;
1013 }
1014
1015 cur_page = j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /*
James Bottomley f1970ba2005-06-20 14:06:52 +02001017 * release the pages we didn't map into the bio, if any
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 */
James Bottomley f1970ba2005-06-20 14:06:52 +02001019 while (j < page_limit)
1020 page_cache_release(pages[j++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 kfree(pages);
1024
1025 /*
1026 * set data direction, and check if mapped pages need bouncing
1027 */
1028 if (!write_to_vm)
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001029 bio->bi_rw |= REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
James Bottomley f1970ba2005-06-20 14:06:52 +02001031 bio->bi_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 bio->bi_flags |= (1 << BIO_USER_MAPPED);
1033 return bio;
James Bottomley f1970ba2005-06-20 14:06:52 +02001034
1035 out_unmap:
1036 for (i = 0; i < nr_pages; i++) {
1037 if(!pages[i])
1038 break;
1039 page_cache_release(pages[i]);
1040 }
1041 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 kfree(pages);
1043 bio_put(bio);
1044 return ERR_PTR(ret);
1045}
1046
1047/**
1048 * bio_map_user - map user address into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001049 * @q: the struct request_queue for the bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 * @bdev: destination block device
1051 * @uaddr: start of user address
1052 * @len: length in bytes
1053 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001054 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 *
1056 * Map the user space address into a bio suitable for io to a block
1057 * device. Returns an error pointer in case of error.
1058 */
Jens Axboe165125e2007-07-24 09:28:11 +02001059struct bio *bio_map_user(struct request_queue *q, struct block_device *bdev,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001060 unsigned long uaddr, unsigned int len, int write_to_vm,
1061 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
James Bottomley f1970ba2005-06-20 14:06:52 +02001063 struct sg_iovec iov;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
viro@ZenIV.linux.org.uk3f703532005-09-09 16:53:56 +01001065 iov.iov_base = (void __user *)uaddr;
James Bottomley f1970ba2005-06-20 14:06:52 +02001066 iov.iov_len = len;
1067
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001068 return bio_map_user_iov(q, bdev, &iov, 1, write_to_vm, gfp_mask);
James Bottomley f1970ba2005-06-20 14:06:52 +02001069}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001070EXPORT_SYMBOL(bio_map_user);
James Bottomley f1970ba2005-06-20 14:06:52 +02001071
1072/**
1073 * bio_map_user_iov - map user sg_iovec table into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001074 * @q: the struct request_queue for the bio
James Bottomley f1970ba2005-06-20 14:06:52 +02001075 * @bdev: destination block device
1076 * @iov: the iovec.
1077 * @iov_count: number of elements in the iovec
1078 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001079 * @gfp_mask: memory allocation flags
James Bottomley f1970ba2005-06-20 14:06:52 +02001080 *
1081 * Map the user space address into a bio suitable for io to a block
1082 * device. Returns an error pointer in case of error.
1083 */
Jens Axboe165125e2007-07-24 09:28:11 +02001084struct bio *bio_map_user_iov(struct request_queue *q, struct block_device *bdev,
James Bottomley f1970ba2005-06-20 14:06:52 +02001085 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001086 int write_to_vm, gfp_t gfp_mask)
James Bottomley f1970ba2005-06-20 14:06:52 +02001087{
1088 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +02001089
FUJITA Tomonoria3bce902008-08-28 16:17:05 +09001090 bio = __bio_map_user_iov(q, bdev, iov, iov_count, write_to_vm,
1091 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (IS_ERR(bio))
1093 return bio;
1094
1095 /*
1096 * subtle -- if __bio_map_user() ended up bouncing a bio,
1097 * it would normally disappear when its bi_end_io is run.
1098 * however, we need it for the unmap, so grab an extra
1099 * reference to it
1100 */
1101 bio_get(bio);
1102
Mike Christie0e75f902006-12-01 10:40:55 +01001103 return bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
1106static void __bio_unmap_user(struct bio *bio)
1107{
1108 struct bio_vec *bvec;
1109 int i;
1110
1111 /*
1112 * make sure we dirty pages we wrote to
1113 */
1114 __bio_for_each_segment(bvec, bio, i, 0) {
1115 if (bio_data_dir(bio) == READ)
1116 set_page_dirty_lock(bvec->bv_page);
1117
1118 page_cache_release(bvec->bv_page);
1119 }
1120
1121 bio_put(bio);
1122}
1123
1124/**
1125 * bio_unmap_user - unmap a bio
1126 * @bio: the bio being unmapped
1127 *
1128 * Unmap a bio previously mapped by bio_map_user(). Must be called with
1129 * a process context.
1130 *
1131 * bio_unmap_user() may sleep.
1132 */
1133void bio_unmap_user(struct bio *bio)
1134{
1135 __bio_unmap_user(bio);
1136 bio_put(bio);
1137}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001138EXPORT_SYMBOL(bio_unmap_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
NeilBrown6712ecf2007-09-27 12:47:43 +02001140static void bio_map_kern_endio(struct bio *bio, int err)
Jens Axboeb8238252005-06-20 14:05:27 +02001141{
Jens Axboeb8238252005-06-20 14:05:27 +02001142 bio_put(bio);
Jens Axboeb8238252005-06-20 14:05:27 +02001143}
1144
Jens Axboe165125e2007-07-24 09:28:11 +02001145static struct bio *__bio_map_kern(struct request_queue *q, void *data,
Al Viro27496a82005-10-21 03:20:48 -04001146 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02001147{
1148 unsigned long kaddr = (unsigned long)data;
1149 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
1150 unsigned long start = kaddr >> PAGE_SHIFT;
1151 const int nr_pages = end - start;
1152 int offset, i;
1153 struct bio *bio;
1154
Tejun Heoa9e9dc22009-04-15 22:10:27 +09001155 bio = bio_kmalloc(gfp_mask, nr_pages);
Mike Christie df46b9a2005-06-20 14:04:44 +02001156 if (!bio)
1157 return ERR_PTR(-ENOMEM);
1158
1159 offset = offset_in_page(kaddr);
1160 for (i = 0; i < nr_pages; i++) {
1161 unsigned int bytes = PAGE_SIZE - offset;
1162
1163 if (len <= 0)
1164 break;
1165
1166 if (bytes > len)
1167 bytes = len;
1168
Mike Christiedefd94b2005-12-05 02:37:06 -06001169 if (bio_add_pc_page(q, bio, virt_to_page(data), bytes,
1170 offset) < bytes)
Mike Christie df46b9a2005-06-20 14:04:44 +02001171 break;
1172
1173 data += bytes;
1174 len -= bytes;
1175 offset = 0;
1176 }
1177
Jens Axboeb8238252005-06-20 14:05:27 +02001178 bio->bi_end_io = bio_map_kern_endio;
Mike Christie df46b9a2005-06-20 14:04:44 +02001179 return bio;
1180}
1181
1182/**
1183 * bio_map_kern - map kernel address into bio
Jens Axboe165125e2007-07-24 09:28:11 +02001184 * @q: the struct request_queue for the bio
Mike Christie df46b9a2005-06-20 14:04:44 +02001185 * @data: pointer to buffer to map
1186 * @len: length in bytes
1187 * @gfp_mask: allocation flags for bio allocation
1188 *
1189 * Map the kernel address into a bio suitable for io to a block
1190 * device. Returns an error pointer in case of error.
1191 */
Jens Axboe165125e2007-07-24 09:28:11 +02001192struct bio *bio_map_kern(struct request_queue *q, void *data, unsigned int len,
Al Viro27496a82005-10-21 03:20:48 -04001193 gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02001194{
1195 struct bio *bio;
1196
1197 bio = __bio_map_kern(q, data, len, gfp_mask);
1198 if (IS_ERR(bio))
1199 return bio;
1200
1201 if (bio->bi_size == len)
1202 return bio;
1203
1204 /*
1205 * Don't support partial mappings.
1206 */
1207 bio_put(bio);
1208 return ERR_PTR(-EINVAL);
1209}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001210EXPORT_SYMBOL(bio_map_kern);
Mike Christie df46b9a2005-06-20 14:04:44 +02001211
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001212static void bio_copy_kern_endio(struct bio *bio, int err)
1213{
1214 struct bio_vec *bvec;
1215 const int read = bio_data_dir(bio) == READ;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001216 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001217 int i;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001218 char *p = bmd->sgvecs[0].iov_base;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001219
1220 __bio_for_each_segment(bvec, bio, i, 0) {
1221 char *addr = page_address(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001222 int len = bmd->iovecs[i].bv_len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001223
Tejun Heo4fc981e2009-05-19 18:33:06 +09001224 if (read)
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001225 memcpy(p, addr, len);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001226
1227 __free_page(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001228 p += len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001229 }
1230
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001231 bio_free_map_data(bmd);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001232 bio_put(bio);
1233}
1234
1235/**
1236 * bio_copy_kern - copy kernel address into bio
1237 * @q: the struct request_queue for the bio
1238 * @data: pointer to buffer to copy
1239 * @len: length in bytes
1240 * @gfp_mask: allocation flags for bio and page allocation
Randy Dunlapffee0252008-04-30 09:08:54 +02001241 * @reading: data direction is READ
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001242 *
1243 * copy the kernel address into a bio suitable for io to a block
1244 * device. Returns an error pointer in case of error.
1245 */
1246struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
1247 gfp_t gfp_mask, int reading)
1248{
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001249 struct bio *bio;
1250 struct bio_vec *bvec;
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001251 int i;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001252
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001253 bio = bio_copy_user(q, NULL, (unsigned long)data, len, 1, gfp_mask);
1254 if (IS_ERR(bio))
1255 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001256
1257 if (!reading) {
1258 void *p = data;
1259
1260 bio_for_each_segment(bvec, bio, i) {
1261 char *addr = page_address(bvec->bv_page);
1262
1263 memcpy(addr, p, bvec->bv_len);
1264 p += bvec->bv_len;
1265 }
1266 }
1267
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001268 bio->bi_end_io = bio_copy_kern_endio;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001269
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001270 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001271}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001272EXPORT_SYMBOL(bio_copy_kern);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274/*
1275 * bio_set_pages_dirty() and bio_check_pages_dirty() are support functions
1276 * for performing direct-IO in BIOs.
1277 *
1278 * The problem is that we cannot run set_page_dirty() from interrupt context
1279 * because the required locks are not interrupt-safe. So what we can do is to
1280 * mark the pages dirty _before_ performing IO. And in interrupt context,
1281 * check that the pages are still dirty. If so, fine. If not, redirty them
1282 * in process context.
1283 *
1284 * We special-case compound pages here: normally this means reads into hugetlb
1285 * pages. The logic in here doesn't really work right for compound pages
1286 * because the VM does not uniformly chase down the head page in all cases.
1287 * But dirtiness of compound pages is pretty meaningless anyway: the VM doesn't
1288 * handle them at all. So we skip compound pages here at an early stage.
1289 *
1290 * Note that this code is very hard to test under normal circumstances because
1291 * direct-io pins the pages with get_user_pages(). This makes
1292 * is_page_cache_freeable return false, and the VM will not clean the pages.
Artem Bityutskiy0d5c3eb2012-07-25 18:12:08 +03001293 * But other code (eg, flusher threads) could clean the pages if they are mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 * pagecache.
1295 *
1296 * Simply disabling the call to bio_set_pages_dirty() is a good way to test the
1297 * deferred bio dirtying paths.
1298 */
1299
1300/*
1301 * bio_set_pages_dirty() will mark all the bio's pages as dirty.
1302 */
1303void bio_set_pages_dirty(struct bio *bio)
1304{
1305 struct bio_vec *bvec = bio->bi_io_vec;
1306 int i;
1307
1308 for (i = 0; i < bio->bi_vcnt; i++) {
1309 struct page *page = bvec[i].bv_page;
1310
1311 if (page && !PageCompound(page))
1312 set_page_dirty_lock(page);
1313 }
1314}
1315
Adrian Bunk86b6c7a2008-02-18 13:48:32 +01001316static void bio_release_pages(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct bio_vec *bvec = bio->bi_io_vec;
1319 int i;
1320
1321 for (i = 0; i < bio->bi_vcnt; i++) {
1322 struct page *page = bvec[i].bv_page;
1323
1324 if (page)
1325 put_page(page);
1326 }
1327}
1328
1329/*
1330 * bio_check_pages_dirty() will check that all the BIO's pages are still dirty.
1331 * If they are, then fine. If, however, some pages are clean then they must
1332 * have been written out during the direct-IO read. So we take another ref on
1333 * the BIO and the offending pages and re-dirty the pages in process context.
1334 *
1335 * It is expected that bio_check_pages_dirty() will wholly own the BIO from
1336 * here on. It will run one page_cache_release() against each page and will
1337 * run one bio_put() against the BIO.
1338 */
1339
David Howells65f27f32006-11-22 14:55:48 +00001340static void bio_dirty_fn(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
David Howells65f27f32006-11-22 14:55:48 +00001342static DECLARE_WORK(bio_dirty_work, bio_dirty_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343static DEFINE_SPINLOCK(bio_dirty_lock);
1344static struct bio *bio_dirty_list;
1345
1346/*
1347 * This runs in process context
1348 */
David Howells65f27f32006-11-22 14:55:48 +00001349static void bio_dirty_fn(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 unsigned long flags;
1352 struct bio *bio;
1353
1354 spin_lock_irqsave(&bio_dirty_lock, flags);
1355 bio = bio_dirty_list;
1356 bio_dirty_list = NULL;
1357 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1358
1359 while (bio) {
1360 struct bio *next = bio->bi_private;
1361
1362 bio_set_pages_dirty(bio);
1363 bio_release_pages(bio);
1364 bio_put(bio);
1365 bio = next;
1366 }
1367}
1368
1369void bio_check_pages_dirty(struct bio *bio)
1370{
1371 struct bio_vec *bvec = bio->bi_io_vec;
1372 int nr_clean_pages = 0;
1373 int i;
1374
1375 for (i = 0; i < bio->bi_vcnt; i++) {
1376 struct page *page = bvec[i].bv_page;
1377
1378 if (PageDirty(page) || PageCompound(page)) {
1379 page_cache_release(page);
1380 bvec[i].bv_page = NULL;
1381 } else {
1382 nr_clean_pages++;
1383 }
1384 }
1385
1386 if (nr_clean_pages) {
1387 unsigned long flags;
1388
1389 spin_lock_irqsave(&bio_dirty_lock, flags);
1390 bio->bi_private = bio_dirty_list;
1391 bio_dirty_list = bio;
1392 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1393 schedule_work(&bio_dirty_work);
1394 } else {
1395 bio_put(bio);
1396 }
1397}
1398
Ilya Loginov2d4dc892009-11-26 09:16:19 +01001399#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
1400void bio_flush_dcache_pages(struct bio *bi)
1401{
1402 int i;
1403 struct bio_vec *bvec;
1404
1405 bio_for_each_segment(bvec, bi, i)
1406 flush_dcache_page(bvec->bv_page);
1407}
1408EXPORT_SYMBOL(bio_flush_dcache_pages);
1409#endif
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411/**
1412 * bio_endio - end I/O on a bio
1413 * @bio: bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 * @error: error, if any
1415 *
1416 * Description:
NeilBrown6712ecf2007-09-27 12:47:43 +02001417 * bio_endio() will end I/O on the whole bio. bio_endio() is the
NeilBrown5bb23a62007-09-27 12:46:13 +02001418 * preferred way to end I/O on a bio, it takes care of clearing
1419 * BIO_UPTODATE on error. @error is 0 on success, and and one of the
1420 * established -Exxxx (-EIO, for instance) error values in case
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001421 * something went wrong. No one should call bi_end_io() directly on a
NeilBrown5bb23a62007-09-27 12:46:13 +02001422 * bio unless they own it and thus know that it has an end_io
1423 * function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 **/
NeilBrown6712ecf2007-09-27 12:47:43 +02001425void bio_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 if (error)
1428 clear_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9cc54d42007-09-27 12:46:12 +02001429 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
1430 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
NeilBrown5bb23a62007-09-27 12:46:13 +02001432 if (bio->bi_end_io)
NeilBrown6712ecf2007-09-27 12:47:43 +02001433 bio->bi_end_io(bio, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001435EXPORT_SYMBOL(bio_endio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
1437void bio_pair_release(struct bio_pair *bp)
1438{
1439 if (atomic_dec_and_test(&bp->cnt)) {
1440 struct bio *master = bp->bio1.bi_private;
1441
NeilBrown6712ecf2007-09-27 12:47:43 +02001442 bio_endio(master, bp->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 mempool_free(bp, bp->bio2.bi_private);
1444 }
1445}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001446EXPORT_SYMBOL(bio_pair_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
NeilBrown6712ecf2007-09-27 12:47:43 +02001448static void bio_pair_end_1(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct bio_pair *bp = container_of(bi, struct bio_pair, bio1);
1451
1452 if (err)
1453 bp->error = err;
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
NeilBrown6712ecf2007-09-27 12:47:43 +02001458static void bio_pair_end_2(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct bio_pair *bp = container_of(bi, struct bio_pair, bio2);
1461
1462 if (err)
1463 bp->error = err;
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468/*
Alberto Bertoglic7eee1b2009-01-25 23:36:14 -02001469 * split a bio - only worry about a bio with a single page in its iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 */
Denis ChengRq6feef532008-10-09 08:57:05 +02001471struct bio_pair *bio_split(struct bio *bi, int first_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Denis ChengRq6feef532008-10-09 08:57:05 +02001473 struct bio_pair *bp = mempool_alloc(bio_split_pool, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 if (!bp)
1476 return bp;
1477
Arnaldo Carvalho de Melo5f3ea372008-10-30 08:34:33 +01001478 trace_block_split(bdev_get_queue(bi->bi_bdev), bi,
Jens Axboe2056a782006-03-23 20:00:26 +01001479 bi->bi_sector + first_sectors);
1480
Shaohua Li02f39392012-09-28 10:38:48 +02001481 BUG_ON(bi->bi_vcnt != 1 && bi->bi_vcnt != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 BUG_ON(bi->bi_idx != 0);
1483 atomic_set(&bp->cnt, 3);
1484 bp->error = 0;
1485 bp->bio1 = *bi;
1486 bp->bio2 = *bi;
1487 bp->bio2.bi_sector += first_sectors;
1488 bp->bio2.bi_size -= first_sectors << 9;
1489 bp->bio1.bi_size = first_sectors << 9;
1490
Shaohua Li02f39392012-09-28 10:38:48 +02001491 if (bi->bi_vcnt != 0) {
1492 bp->bv1 = bi->bi_io_vec[0];
1493 bp->bv2 = bi->bi_io_vec[0];
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001494
Shaohua Li02f39392012-09-28 10:38:48 +02001495 if (bio_is_rw(bi)) {
1496 bp->bv2.bv_offset += first_sectors << 9;
1497 bp->bv2.bv_len -= first_sectors << 9;
1498 bp->bv1.bv_len = first_sectors << 9;
1499 }
1500
1501 bp->bio1.bi_io_vec = &bp->bv1;
1502 bp->bio2.bi_io_vec = &bp->bv2;
1503
1504 bp->bio1.bi_max_vecs = 1;
1505 bp->bio2.bi_max_vecs = 1;
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 bp->bio1.bi_end_io = bio_pair_end_1;
1509 bp->bio2.bi_end_io = bio_pair_end_2;
1510
1511 bp->bio1.bi_private = bi;
Denis ChengRq6feef532008-10-09 08:57:05 +02001512 bp->bio2.bi_private = bio_split_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001514 if (bio_integrity(bi))
1515 bio_integrity_split(bi, bp, first_sectors);
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return bp;
1518}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001519EXPORT_SYMBOL(bio_split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001521/**
1522 * bio_sector_offset - Find hardware sector offset in bio
1523 * @bio: bio to inspect
1524 * @index: bio_vec index
1525 * @offset: offset in bv_page
1526 *
1527 * Return the number of hardware sectors between beginning of bio
1528 * and an end point indicated by a bio_vec index and an offset
1529 * within that vector's page.
1530 */
1531sector_t bio_sector_offset(struct bio *bio, unsigned short index,
1532 unsigned int offset)
1533{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001534 unsigned int sector_sz;
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001535 struct bio_vec *bv;
1536 sector_t sectors;
1537 int i;
1538
Martin K. Petersene1defc42009-05-22 17:17:49 -04001539 sector_sz = queue_logical_block_size(bio->bi_bdev->bd_disk->queue);
Martin K. Petersenad3316b2008-10-01 22:42:53 -04001540 sectors = 0;
1541
1542 if (index >= bio->bi_idx)
1543 index = bio->bi_vcnt - 1;
1544
1545 __bio_for_each_segment(bv, bio, i, 0) {
1546 if (i == index) {
1547 if (offset > bv->bv_offset)
1548 sectors += (offset - bv->bv_offset) / sector_sz;
1549 break;
1550 }
1551
1552 sectors += bv->bv_len / sector_sz;
1553 }
1554
1555 return sectors;
1556}
1557EXPORT_SYMBOL(bio_sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559/*
1560 * create memory pools for biovec's in a bio_set.
1561 * use the global biovec slabs created for general use.
1562 */
Jens Axboe59725112007-04-02 10:06:42 +02001563static int biovec_create_pools(struct bio_set *bs, int pool_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Jens Axboe7ff93452008-12-11 11:53:43 +01001565 struct biovec_slab *bp = bvec_slabs + BIOVEC_MAX_IDX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Jens Axboe7ff93452008-12-11 11:53:43 +01001567 bs->bvec_pool = mempool_create_slab_pool(pool_entries, bp->slab);
1568 if (!bs->bvec_pool)
1569 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return 0;
1572}
1573
1574static void biovec_free_pools(struct bio_set *bs)
1575{
Jens Axboe7ff93452008-12-11 11:53:43 +01001576 mempool_destroy(bs->bvec_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579void bioset_free(struct bio_set *bs)
1580{
1581 if (bs->bio_pool)
1582 mempool_destroy(bs->bio_pool);
1583
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001584 bioset_integrity_free(bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 biovec_free_pools(bs);
Jens Axboebb799ca2008-12-10 15:35:05 +01001586 bio_put_slab(bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 kfree(bs);
1589}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001590EXPORT_SYMBOL(bioset_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Jens Axboebb799ca2008-12-10 15:35:05 +01001592/**
1593 * bioset_create - Create a bio_set
1594 * @pool_size: Number of bio and bio_vecs to cache in the mempool
1595 * @front_pad: Number of bytes to allocate in front of the returned bio
1596 *
1597 * Description:
1598 * Set up a bio_set to be used with @bio_alloc_bioset. Allows the caller
1599 * to ask for a number of bytes to be allocated in front of the bio.
1600 * Front pad allocation is useful for embedding the bio inside
1601 * another structure, to avoid allocating extra data to go with the bio.
1602 * Note that the bio must be embedded at the END of that structure always,
1603 * or things will break badly.
1604 */
1605struct bio_set *bioset_create(unsigned int pool_size, unsigned int front_pad)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Jens Axboe392ddc32008-12-23 12:42:54 +01001607 unsigned int back_pad = BIO_INLINE_VECS * sizeof(struct bio_vec);
Jens Axboe1b434492008-10-22 20:32:58 +02001608 struct bio_set *bs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Jens Axboe1b434492008-10-22 20:32:58 +02001610 bs = kzalloc(sizeof(*bs), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (!bs)
1612 return NULL;
1613
Jens Axboebb799ca2008-12-10 15:35:05 +01001614 bs->front_pad = front_pad;
Jens Axboe1b434492008-10-22 20:32:58 +02001615
Jens Axboe392ddc32008-12-23 12:42:54 +01001616 bs->bio_slab = bio_find_or_create_slab(front_pad + back_pad);
Jens Axboebb799ca2008-12-10 15:35:05 +01001617 if (!bs->bio_slab) {
1618 kfree(bs);
1619 return NULL;
1620 }
1621
1622 bs->bio_pool = mempool_create_slab_pool(pool_size, bs->bio_slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (!bs->bio_pool)
1624 goto bad;
1625
Jens Axboebb799ca2008-12-10 15:35:05 +01001626 if (!biovec_create_pools(bs, pool_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return bs;
1628
1629bad:
1630 bioset_free(bs);
1631 return NULL;
1632}
H Hartley Sweetena112a712009-09-26 16:19:21 +02001633EXPORT_SYMBOL(bioset_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Tejun Heo852c7882012-03-05 13:15:27 -08001635#ifdef CONFIG_BLK_CGROUP
1636/**
1637 * bio_associate_current - associate a bio with %current
1638 * @bio: target bio
1639 *
1640 * Associate @bio with %current if it hasn't been associated yet. Block
1641 * layer will treat @bio as if it were issued by %current no matter which
1642 * task actually issues it.
1643 *
1644 * This function takes an extra reference of @task's io_context and blkcg
1645 * which will be put when @bio is released. The caller must own @bio,
1646 * ensure %current->io_context exists, and is responsible for synchronizing
1647 * calls to this function.
1648 */
1649int bio_associate_current(struct bio *bio)
1650{
1651 struct io_context *ioc;
1652 struct cgroup_subsys_state *css;
1653
1654 if (bio->bi_ioc)
1655 return -EBUSY;
1656
1657 ioc = current->io_context;
1658 if (!ioc)
1659 return -ENOENT;
1660
1661 /* acquire active ref on @ioc and associate */
1662 get_io_context_active(ioc);
1663 bio->bi_ioc = ioc;
1664
1665 /* associate blkcg if exists */
1666 rcu_read_lock();
1667 css = task_subsys_state(current, blkio_subsys_id);
1668 if (css && css_tryget(css))
1669 bio->bi_css = css;
1670 rcu_read_unlock();
1671
1672 return 0;
1673}
1674
1675/**
1676 * bio_disassociate_task - undo bio_associate_current()
1677 * @bio: target bio
1678 */
1679void bio_disassociate_task(struct bio *bio)
1680{
1681 if (bio->bi_ioc) {
1682 put_io_context(bio->bi_ioc);
1683 bio->bi_ioc = NULL;
1684 }
1685 if (bio->bi_css) {
1686 css_put(bio->bi_css);
1687 bio->bi_css = NULL;
1688 }
1689}
1690
1691#endif /* CONFIG_BLK_CGROUP */
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693static void __init biovec_init_slabs(void)
1694{
1695 int i;
1696
1697 for (i = 0; i < BIOVEC_NR_POOLS; i++) {
1698 int size;
1699 struct biovec_slab *bvs = bvec_slabs + i;
1700
Jens Axboea7fcd372008-12-05 16:10:29 +01001701 if (bvs->nr_vecs <= BIO_INLINE_VECS) {
1702 bvs->slab = NULL;
1703 continue;
1704 }
Jens Axboea7fcd372008-12-05 16:10:29 +01001705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 size = bvs->nr_vecs * sizeof(struct bio_vec);
1707 bvs->slab = kmem_cache_create(bvs->name, size, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001708 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710}
1711
1712static int __init init_bio(void)
1713{
Jens Axboebb799ca2008-12-10 15:35:05 +01001714 bio_slab_max = 2;
1715 bio_slab_nr = 0;
1716 bio_slabs = kzalloc(bio_slab_max * sizeof(struct bio_slab), GFP_KERNEL);
1717 if (!bio_slabs)
1718 panic("bio: can't allocate bios\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Martin K. Petersen7878cba2009-06-26 15:37:49 +02001720 bio_integrity_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 biovec_init_slabs();
1722
Jens Axboebb799ca2008-12-10 15:35:05 +01001723 fs_bio_set = bioset_create(BIO_POOL_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (!fs_bio_set)
1725 panic("bio: can't allocate bios\n");
1726
Martin K. Petersena91a2782011-03-17 11:11:05 +01001727 if (bioset_integrity_create(fs_bio_set, BIO_POOL_SIZE))
1728 panic("bio: can't create integrity pool\n");
1729
Matthew Dobson0eaae62a2006-03-26 01:37:47 -08001730 bio_split_pool = mempool_create_kmalloc_pool(BIO_SPLIT_ENTRIES,
1731 sizeof(struct bio_pair));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (!bio_split_pool)
1733 panic("bio: can't create split pool\n");
1734
1735 return 0;
1736}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737subsys_initcall(init_bio);