blob: 9d68ddb89b71629b431c1283ce0d93b74419987d [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>
22#include <linux/slab.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/mempool.h>
27#include <linux/workqueue.h>
Jens Axboe2056a782006-03-23 20:00:26 +010028#include <linux/blktrace_api.h>
James Bottomley f1970ba2005-06-20 14:06:52 +020029#include <scsi/sg.h> /* for struct sg_iovec */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Christoph Lametere18b8902006-12-06 20:33:20 -080031static struct kmem_cache *bio_slab __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Eric Dumazetfa3536c2006-03-26 01:37:24 -080033mempool_t *bio_split_pool __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
36 * if you change this list, also change bvec_alloc or things will
37 * break badly! cannot be bigger than what you can fit into an
38 * unsigned short
39 */
40
41#define BV(x) { .nr_vecs = x, .name = "biovec-"__stringify(x) }
Christoph Lameter6c036522005-07-07 17:56:59 -070042static struct biovec_slab bvec_slabs[BIOVEC_NR_POOLS] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 BV(1), BV(4), BV(16), BV(64), BV(128), BV(BIO_MAX_PAGES),
44};
45#undef BV
46
47/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * fs_bio_set is the bio_set containing bio and iovec memory pools used by
49 * IO code that does not need private memory pools.
50 */
Martin K. Petersen51d654e2008-06-17 18:59:56 +020051struct bio_set *fs_bio_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +020053unsigned int bvec_nr_vecs(unsigned short idx)
54{
55 return bvec_slabs[idx].nr_vecs;
56}
57
Martin K. Petersen51d654e2008-06-17 18:59:56 +020058struct bio_vec *bvec_alloc_bs(gfp_t gfp_mask, int nr, unsigned long *idx, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct bio_vec *bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /*
63 * see comment near bvec_array define!
64 */
65 switch (nr) {
66 case 1 : *idx = 0; break;
67 case 2 ... 4: *idx = 1; break;
68 case 5 ... 16: *idx = 2; break;
69 case 17 ... 64: *idx = 3; break;
70 case 65 ... 128: *idx = 4; break;
71 case 129 ... BIO_MAX_PAGES: *idx = 5; break;
72 default:
73 return NULL;
74 }
75 /*
76 * idx now points to the pool we want to allocate from
77 */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 bvl = mempool_alloc(bs->bvec_pools[*idx], gfp_mask);
Denis ChengRq1ac0ae02008-08-04 11:56:30 +020080 if (bvl)
81 memset(bvl, 0, bvec_nr_vecs(*idx) * sizeof(struct bio_vec));
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 return bvl;
84}
85
Peter Osterlund36763472005-09-06 15:16:42 -070086void bio_free(struct bio *bio, struct bio_set *bio_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Jens Axboe992c5dd2007-07-18 13:18:08 +020088 if (bio->bi_io_vec) {
89 const int pool_idx = BIO_POOL_IDX(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Jens Axboe992c5dd2007-07-18 13:18:08 +020091 BIO_BUG_ON(pool_idx >= BIOVEC_NR_POOLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Jens Axboe992c5dd2007-07-18 13:18:08 +020093 mempool_free(bio->bi_io_vec, bio_set->bvec_pools[pool_idx]);
94 }
95
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +020096 if (bio_integrity(bio))
97 bio_integrity_free(bio, bio_set);
98
Peter Osterlund36763472005-09-06 15:16:42 -070099 mempool_free(bio, bio_set->bio_pool);
100}
101
102/*
103 * default destructor for a bio allocated with bio_alloc_bioset()
104 */
105static void bio_fs_destructor(struct bio *bio)
106{
107 bio_free(bio, fs_bio_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Arjan van de Ven858119e2006-01-14 13:20:43 -0800110void bio_init(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Jens Axboe2b94de52007-07-18 13:14:03 +0200112 memset(bio, 0, sizeof(*bio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 bio->bi_flags = 1 << BIO_UPTODATE;
Jens Axboec7c22e42008-09-13 20:26:01 +0200114 bio->bi_comp_cpu = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 atomic_set(&bio->bi_cnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/**
119 * bio_alloc_bioset - allocate a bio for I/O
120 * @gfp_mask: the GFP_ mask given to the slab allocator
121 * @nr_iovecs: number of iovecs to pre-allocate
Martin Waitz67be2dd2005-05-01 08:59:26 -0700122 * @bs: the bio_set to allocate from
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 *
124 * Description:
125 * bio_alloc_bioset will first try it's on mempool to satisfy the allocation.
126 * If %__GFP_WAIT is set then we will block on the internal pool waiting
127 * for a &struct bio to become free.
128 *
129 * allocate bio and iovecs from the memory pools specified by the
130 * bio_set structure.
131 **/
Al Virodd0fc662005-10-07 07:46:04 +0100132struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 struct bio *bio = mempool_alloc(bs->bio_pool, gfp_mask);
135
136 if (likely(bio)) {
137 struct bio_vec *bvl = NULL;
138
139 bio_init(bio);
140 if (likely(nr_iovecs)) {
Jens Axboeeeae1d42008-05-07 13:26:27 +0200141 unsigned long uninitialized_var(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 bvl = bvec_alloc_bs(gfp_mask, nr_iovecs, &idx, bs);
144 if (unlikely(!bvl)) {
145 mempool_free(bio, bs->bio_pool);
146 bio = NULL;
147 goto out;
148 }
149 bio->bi_flags |= idx << BIO_POOL_OFFSET;
Denis ChengRq1ac0ae02008-08-04 11:56:30 +0200150 bio->bi_max_vecs = bvec_nr_vecs(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152 bio->bi_io_vec = bvl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154out:
155 return bio;
156}
157
Al Virodd0fc662005-10-07 07:46:04 +0100158struct bio *bio_alloc(gfp_t gfp_mask, int nr_iovecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Peter Osterlund36763472005-09-06 15:16:42 -0700160 struct bio *bio = bio_alloc_bioset(gfp_mask, nr_iovecs, fs_bio_set);
161
162 if (bio)
163 bio->bi_destructor = bio_fs_destructor;
164
165 return bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168void zero_fill_bio(struct bio *bio)
169{
170 unsigned long flags;
171 struct bio_vec *bv;
172 int i;
173
174 bio_for_each_segment(bv, bio, i) {
175 char *data = bvec_kmap_irq(bv, &flags);
176 memset(data, 0, bv->bv_len);
177 flush_dcache_page(bv->bv_page);
178 bvec_kunmap_irq(data, &flags);
179 }
180}
181EXPORT_SYMBOL(zero_fill_bio);
182
183/**
184 * bio_put - release a reference to a bio
185 * @bio: bio to release reference to
186 *
187 * Description:
188 * Put a reference to a &struct bio, either one you have gotten with
189 * bio_alloc or bio_get. The last put of a bio will free it.
190 **/
191void bio_put(struct bio *bio)
192{
193 BIO_BUG_ON(!atomic_read(&bio->bi_cnt));
194
195 /*
196 * last put frees it
197 */
198 if (atomic_dec_and_test(&bio->bi_cnt)) {
199 bio->bi_next = NULL;
200 bio->bi_destructor(bio);
201 }
202}
203
Jens Axboe165125e2007-07-24 09:28:11 +0200204inline int bio_phys_segments(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
207 blk_recount_segments(q, bio);
208
209 return bio->bi_phys_segments;
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/**
213 * __bio_clone - clone a bio
214 * @bio: destination bio
215 * @bio_src: bio to clone
216 *
217 * Clone a &bio. Caller will own the returned bio, but not
218 * the actual data it points to. Reference count of returned
219 * bio will be one.
220 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800221void __bio_clone(struct bio *bio, struct bio *bio_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Andrew Mortone525e152005-08-07 09:42:12 -0700223 memcpy(bio->bi_io_vec, bio_src->bi_io_vec,
224 bio_src->bi_max_vecs * sizeof(struct bio_vec));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jens Axboe5d840702008-01-25 12:44:44 +0100226 /*
227 * most users will be overriding ->bi_bdev with a new target,
228 * so we don't set nor calculate new physical/hw segment counts here
229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 bio->bi_sector = bio_src->bi_sector;
231 bio->bi_bdev = bio_src->bi_bdev;
232 bio->bi_flags |= 1 << BIO_CLONED;
233 bio->bi_rw = bio_src->bi_rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 bio->bi_vcnt = bio_src->bi_vcnt;
235 bio->bi_size = bio_src->bi_size;
Andrew Mortona5453be2005-07-28 01:07:18 -0700236 bio->bi_idx = bio_src->bi_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239/**
240 * bio_clone - clone a bio
241 * @bio: bio to clone
242 * @gfp_mask: allocation priority
243 *
244 * Like __bio_clone, only also allocates the returned bio
245 */
Al Virodd0fc662005-10-07 07:46:04 +0100246struct bio *bio_clone(struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct bio *b = bio_alloc_bioset(gfp_mask, bio->bi_max_vecs, fs_bio_set);
249
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200250 if (!b)
251 return NULL;
252
253 b->bi_destructor = bio_fs_destructor;
254 __bio_clone(b, bio);
255
256 if (bio_integrity(bio)) {
257 int ret;
258
259 ret = bio_integrity_clone(b, bio, fs_bio_set);
260
261 if (ret < 0)
262 return NULL;
Peter Osterlund36763472005-09-06 15:16:42 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 return b;
266}
267
268/**
269 * bio_get_nr_vecs - return approx number of vecs
270 * @bdev: I/O target
271 *
272 * Return the approximate number of pages we can send to this target.
273 * There's no guarantee that you will be able to fit this number of pages
274 * into a bio, it does not account for dynamic restrictions that vary
275 * on offset.
276 */
277int bio_get_nr_vecs(struct block_device *bdev)
278{
Jens Axboe165125e2007-07-24 09:28:11 +0200279 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int nr_pages;
281
282 nr_pages = ((q->max_sectors << 9) + PAGE_SIZE - 1) >> PAGE_SHIFT;
283 if (nr_pages > q->max_phys_segments)
284 nr_pages = q->max_phys_segments;
285 if (nr_pages > q->max_hw_segments)
286 nr_pages = q->max_hw_segments;
287
288 return nr_pages;
289}
290
Jens Axboe165125e2007-07-24 09:28:11 +0200291static int __bio_add_page(struct request_queue *q, struct bio *bio, struct page
Mike Christiedefd94b2005-12-05 02:37:06 -0600292 *page, unsigned int len, unsigned int offset,
293 unsigned short max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 int retried_segments = 0;
296 struct bio_vec *bvec;
297
298 /*
299 * cloned bio must not modify vec list
300 */
301 if (unlikely(bio_flagged(bio, BIO_CLONED)))
302 return 0;
303
Jens Axboe80cfd542006-01-06 09:43:28 +0100304 if (((bio->bi_size + len) >> 9) > max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 0;
306
Jens Axboe80cfd542006-01-06 09:43:28 +0100307 /*
308 * For filesystems with a blocksize smaller than the pagesize
309 * we will often be called with the same page as last time and
310 * a consecutive offset. Optimize this special case.
311 */
312 if (bio->bi_vcnt > 0) {
313 struct bio_vec *prev = &bio->bi_io_vec[bio->bi_vcnt - 1];
314
315 if (page == prev->bv_page &&
316 offset == prev->bv_offset + prev->bv_len) {
317 prev->bv_len += len;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200318
319 if (q->merge_bvec_fn) {
320 struct bvec_merge_data bvm = {
321 .bi_bdev = bio->bi_bdev,
322 .bi_sector = bio->bi_sector,
323 .bi_size = bio->bi_size,
324 .bi_rw = bio->bi_rw,
325 };
326
327 if (q->merge_bvec_fn(q, &bvm, prev) < len) {
328 prev->bv_len -= len;
329 return 0;
330 }
Jens Axboe80cfd542006-01-06 09:43:28 +0100331 }
332
333 goto done;
334 }
335 }
336
337 if (bio->bi_vcnt >= bio->bi_max_vecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return 0;
339
340 /*
341 * we might lose a segment or two here, but rather that than
342 * make this too complex.
343 */
344
345 while (bio->bi_phys_segments >= q->max_phys_segments
Mikulas Patocka5df97b92008-08-15 10:20:02 +0200346 || bio->bi_phys_segments >= q->max_hw_segments) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (retried_segments)
349 return 0;
350
351 retried_segments = 1;
352 blk_recount_segments(q, bio);
353 }
354
355 /*
356 * setup the new entry, we might clear it again later if we
357 * cannot add the page
358 */
359 bvec = &bio->bi_io_vec[bio->bi_vcnt];
360 bvec->bv_page = page;
361 bvec->bv_len = len;
362 bvec->bv_offset = offset;
363
364 /*
365 * if queue has other restrictions (eg varying max sector size
366 * depending on offset), it can specify a merge_bvec_fn in the
367 * queue to get further control
368 */
369 if (q->merge_bvec_fn) {
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200370 struct bvec_merge_data bvm = {
371 .bi_bdev = bio->bi_bdev,
372 .bi_sector = bio->bi_sector,
373 .bi_size = bio->bi_size,
374 .bi_rw = bio->bi_rw,
375 };
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * merge_bvec_fn() returns number of bytes it can accept
379 * at this offset
380 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +0200381 if (q->merge_bvec_fn(q, &bvm, bvec) < len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 bvec->bv_page = NULL;
383 bvec->bv_len = 0;
384 bvec->bv_offset = 0;
385 return 0;
386 }
387 }
388
389 /* If we may be able to merge these biovecs, force a recount */
Mikulas Patockab8b3e162008-08-15 10:15:19 +0200390 if (bio->bi_vcnt && (BIOVEC_PHYS_MERGEABLE(bvec-1, bvec)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
392
393 bio->bi_vcnt++;
394 bio->bi_phys_segments++;
Jens Axboe80cfd542006-01-06 09:43:28 +0100395 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 bio->bi_size += len;
397 return len;
398}
399
400/**
Mike Christie6e68af62005-11-11 05:30:27 -0600401 * bio_add_pc_page - attempt to add page to bio
Jens Axboefddfdea2006-01-31 15:24:34 +0100402 * @q: the target queue
Mike Christie6e68af62005-11-11 05:30:27 -0600403 * @bio: destination bio
404 * @page: page to add
405 * @len: vec entry length
406 * @offset: vec entry offset
407 *
408 * Attempt to add a page to the bio_vec maplist. This can fail for a
409 * number of reasons, such as the bio being full or target block
410 * device limitations. The target block device must allow bio's
411 * smaller than PAGE_SIZE, so it is always possible to add a single
412 * page to an empty bio. This should only be used by REQ_PC bios.
413 */
Jens Axboe165125e2007-07-24 09:28:11 +0200414int bio_add_pc_page(struct request_queue *q, struct bio *bio, struct page *page,
Mike Christie6e68af62005-11-11 05:30:27 -0600415 unsigned int len, unsigned int offset)
416{
Mike Christiedefd94b2005-12-05 02:37:06 -0600417 return __bio_add_page(q, bio, page, len, offset, q->max_hw_sectors);
Mike Christie6e68af62005-11-11 05:30:27 -0600418}
419
420/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * bio_add_page - attempt to add page to bio
422 * @bio: destination bio
423 * @page: page to add
424 * @len: vec entry length
425 * @offset: vec entry offset
426 *
427 * Attempt to add a page to the bio_vec maplist. This can fail for a
428 * number of reasons, such as the bio being full or target block
429 * device limitations. The target block device must allow bio's
430 * smaller than PAGE_SIZE, so it is always possible to add a single
431 * page to an empty bio.
432 */
433int bio_add_page(struct bio *bio, struct page *page, unsigned int len,
434 unsigned int offset)
435{
Mike Christiedefd94b2005-12-05 02:37:06 -0600436 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
437 return __bio_add_page(q, bio, page, len, offset, q->max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440struct bio_map_data {
441 struct bio_vec *iovecs;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200442 struct sg_iovec *sgvecs;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900443 int nr_sgvecs;
444 int is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445};
446
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200447static void bio_set_map_data(struct bio_map_data *bmd, struct bio *bio,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900448 struct sg_iovec *iov, int iov_count,
449 int is_our_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 memcpy(bmd->iovecs, bio->bi_io_vec, sizeof(struct bio_vec) * bio->bi_vcnt);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200452 memcpy(bmd->sgvecs, iov, sizeof(struct sg_iovec) * iov_count);
453 bmd->nr_sgvecs = iov_count;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900454 bmd->is_our_pages = is_our_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 bio->bi_private = bmd;
456}
457
458static void bio_free_map_data(struct bio_map_data *bmd)
459{
460 kfree(bmd->iovecs);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200461 kfree(bmd->sgvecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 kfree(bmd);
463}
464
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200465static struct bio_map_data *bio_alloc_map_data(int nr_segs, int iov_count,
466 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200468 struct bio_map_data *bmd = kmalloc(sizeof(*bmd), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (!bmd)
471 return NULL;
472
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200473 bmd->iovecs = kmalloc(sizeof(struct bio_vec) * nr_segs, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200474 if (!bmd->iovecs) {
475 kfree(bmd);
476 return NULL;
477 }
478
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200479 bmd->sgvecs = kmalloc(sizeof(struct sg_iovec) * iov_count, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200480 if (bmd->sgvecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return bmd;
482
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200483 kfree(bmd->iovecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 kfree(bmd);
485 return NULL;
486}
487
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200488static int __bio_copy_iov(struct bio *bio, struct bio_vec *iovecs,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900489 struct sg_iovec *iov, int iov_count, int uncopy,
490 int do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200491{
492 int ret = 0, i;
493 struct bio_vec *bvec;
494 int iov_idx = 0;
495 unsigned int iov_off = 0;
496 int read = bio_data_dir(bio) == READ;
497
498 __bio_for_each_segment(bvec, bio, i, 0) {
499 char *bv_addr = page_address(bvec->bv_page);
FUJITA Tomonoriaefcc282008-08-25 20:36:08 +0200500 unsigned int bv_len = iovecs[i].bv_len;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200501
502 while (bv_len && iov_idx < iov_count) {
503 unsigned int bytes;
504 char *iov_addr;
505
506 bytes = min_t(unsigned int,
507 iov[iov_idx].iov_len - iov_off, bv_len);
508 iov_addr = iov[iov_idx].iov_base + iov_off;
509
510 if (!ret) {
511 if (!read && !uncopy)
512 ret = copy_from_user(bv_addr, iov_addr,
513 bytes);
514 if (read && uncopy)
515 ret = copy_to_user(iov_addr, bv_addr,
516 bytes);
517
518 if (ret)
519 ret = -EFAULT;
520 }
521
522 bv_len -= bytes;
523 bv_addr += bytes;
524 iov_addr += bytes;
525 iov_off += bytes;
526
527 if (iov[iov_idx].iov_len == iov_off) {
528 iov_idx++;
529 iov_off = 0;
530 }
531 }
532
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900533 if (do_free_page)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200534 __free_page(bvec->bv_page);
535 }
536
537 return ret;
538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/**
541 * bio_uncopy_user - finish previously mapped bio
542 * @bio: bio being terminated
543 *
544 * Free pages allocated from bio_copy_user() and write back data
545 * to user space in case of a read.
546 */
547int bio_uncopy_user(struct bio *bio)
548{
549 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200550 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900552 ret = __bio_copy_iov(bio, bmd->iovecs, bmd->sgvecs, bmd->nr_sgvecs, 1,
553 bmd->is_our_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 bio_free_map_data(bmd);
556 bio_put(bio);
557 return ret;
558}
559
560/**
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200561 * bio_copy_user_iov - copy user data to bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900563 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200564 * @iov: the iovec.
565 * @iov_count: number of elements in the iovec
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900567 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 *
569 * Prepares and returns a bio for indirect user io, bouncing data
570 * to/from kernel pages as necessary. Must be paired with
571 * call bio_uncopy_user() on io completion.
572 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900573struct bio *bio_copy_user_iov(struct request_queue *q,
574 struct rq_map_data *map_data,
575 struct sg_iovec *iov, int iov_count,
576 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 struct bio_map_data *bmd;
579 struct bio_vec *bvec;
580 struct page *page;
581 struct bio *bio;
582 int i, ret;
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200583 int nr_pages = 0;
584 unsigned int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200586 for (i = 0; i < iov_count; i++) {
587 unsigned long uaddr;
588 unsigned long end;
589 unsigned long start;
590
591 uaddr = (unsigned long)iov[i].iov_base;
592 end = (uaddr + iov[i].iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
593 start = uaddr >> PAGE_SHIFT;
594
595 nr_pages += end - start;
596 len += iov[i].iov_len;
597 }
598
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900599 bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!bmd)
601 return ERR_PTR(-ENOMEM);
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 ret = -ENOMEM;
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900604 bio = bio_alloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (!bio)
606 goto out_bmd;
607
608 bio->bi_rw |= (!write_to_vm << BIO_RW);
609
610 ret = 0;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900611 i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 while (len) {
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900613 unsigned int bytes;
614
615 if (map_data)
616 bytes = 1U << (PAGE_SHIFT + map_data->page_order);
617 else
618 bytes = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 if (bytes > len)
621 bytes = len;
622
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900623 if (map_data) {
624 if (i == map_data->nr_entries) {
625 ret = -ENOMEM;
626 break;
627 }
628 page = map_data->pages[i++];
629 } else
630 page = alloc_page(q->bounce_gfp | gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (!page) {
632 ret = -ENOMEM;
633 break;
634 }
635
Mike Christie0e75f902006-12-01 10:40:55 +0100636 if (bio_add_pc_page(q, bio, page, bytes, 0) < bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 len -= bytes;
640 }
641
642 if (ret)
643 goto cleanup;
644
645 /*
646 * success
647 */
648 if (!write_to_vm) {
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900649 ret = __bio_copy_iov(bio, bio->bi_io_vec, iov, iov_count, 0, 0);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200650 if (ret)
651 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900654 bio_set_map_data(bmd, bio, iov, iov_count, map_data ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return bio;
656cleanup:
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900657 if (!map_data)
658 bio_for_each_segment(bvec, bio, i)
659 __free_page(bvec->bv_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 bio_put(bio);
662out_bmd:
663 bio_free_map_data(bmd);
664 return ERR_PTR(ret);
665}
666
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200667/**
668 * bio_copy_user - copy user data to bio
669 * @q: destination block queue
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900670 * @map_data: pointer to the rq_map_data holding pages (if necessary)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200671 * @uaddr: start of user address
672 * @len: length in bytes
673 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900674 * @gfp_mask: memory allocation flags
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200675 *
676 * Prepares and returns a bio for indirect user io, bouncing data
677 * to/from kernel pages as necessary. Must be paired with
678 * call bio_uncopy_user() on io completion.
679 */
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900680struct bio *bio_copy_user(struct request_queue *q, struct rq_map_data *map_data,
681 unsigned long uaddr, unsigned int len,
682 int write_to_vm, gfp_t gfp_mask)
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200683{
684 struct sg_iovec iov;
685
686 iov.iov_base = (void __user *)uaddr;
687 iov.iov_len = len;
688
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900689 return bio_copy_user_iov(q, map_data, &iov, 1, write_to_vm, gfp_mask);
FUJITA Tomonoric5dec1c2008-04-11 12:56:49 +0200690}
691
Jens Axboe165125e2007-07-24 09:28:11 +0200692static struct bio *__bio_map_user_iov(struct request_queue *q,
James Bottomley f1970ba2005-06-20 14:06:52 +0200693 struct block_device *bdev,
694 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900695 int write_to_vm, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
James Bottomley f1970ba2005-06-20 14:06:52 +0200697 int i, j;
698 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 struct page **pages;
700 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +0200701 int cur_page = 0;
702 int ret, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
James Bottomley f1970ba2005-06-20 14:06:52 +0200704 for (i = 0; i < iov_count; i++) {
705 unsigned long uaddr = (unsigned long)iov[i].iov_base;
706 unsigned long len = iov[i].iov_len;
707 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
708 unsigned long start = uaddr >> PAGE_SHIFT;
709
710 nr_pages += end - start;
711 /*
Mike Christiead2d7222006-12-01 10:40:20 +0100712 * buffer must be aligned to at least hardsector size for now
James Bottomley f1970ba2005-06-20 14:06:52 +0200713 */
Mike Christiead2d7222006-12-01 10:40:20 +0100714 if (uaddr & queue_dma_alignment(q))
James Bottomley f1970ba2005-06-20 14:06:52 +0200715 return ERR_PTR(-EINVAL);
716 }
717
718 if (!nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return ERR_PTR(-EINVAL);
720
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900721 bio = bio_alloc(gfp_mask, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!bio)
723 return ERR_PTR(-ENOMEM);
724
725 ret = -ENOMEM;
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900726 pages = kcalloc(nr_pages, sizeof(struct page *), gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (!pages)
728 goto out;
729
James Bottomley f1970ba2005-06-20 14:06:52 +0200730 for (i = 0; i < iov_count; i++) {
731 unsigned long uaddr = (unsigned long)iov[i].iov_base;
732 unsigned long len = iov[i].iov_len;
733 unsigned long end = (uaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
734 unsigned long start = uaddr >> PAGE_SHIFT;
735 const int local_nr_pages = end - start;
736 const int page_limit = cur_page + local_nr_pages;
737
Nick Pigginf5dd33c2008-07-25 19:45:25 -0700738 ret = get_user_pages_fast(uaddr, local_nr_pages,
739 write_to_vm, &pages[cur_page]);
Jens Axboe99172152006-06-16 13:02:29 +0200740 if (ret < local_nr_pages) {
741 ret = -EFAULT;
James Bottomley f1970ba2005-06-20 14:06:52 +0200742 goto out_unmap;
Jens Axboe99172152006-06-16 13:02:29 +0200743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
James Bottomley f1970ba2005-06-20 14:06:52 +0200745 offset = uaddr & ~PAGE_MASK;
746 for (j = cur_page; j < page_limit; j++) {
747 unsigned int bytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
James Bottomley f1970ba2005-06-20 14:06:52 +0200749 if (len <= 0)
750 break;
751
752 if (bytes > len)
753 bytes = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
James Bottomley f1970ba2005-06-20 14:06:52 +0200755 /*
756 * sorry...
757 */
Mike Christiedefd94b2005-12-05 02:37:06 -0600758 if (bio_add_pc_page(q, bio, pages[j], bytes, offset) <
759 bytes)
James Bottomley f1970ba2005-06-20 14:06:52 +0200760 break;
761
762 len -= bytes;
763 offset = 0;
764 }
765
766 cur_page = j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /*
James Bottomley f1970ba2005-06-20 14:06:52 +0200768 * release the pages we didn't map into the bio, if any
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
James Bottomley f1970ba2005-06-20 14:06:52 +0200770 while (j < page_limit)
771 page_cache_release(pages[j++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 kfree(pages);
775
776 /*
777 * set data direction, and check if mapped pages need bouncing
778 */
779 if (!write_to_vm)
780 bio->bi_rw |= (1 << BIO_RW);
781
James Bottomley f1970ba2005-06-20 14:06:52 +0200782 bio->bi_bdev = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 bio->bi_flags |= (1 << BIO_USER_MAPPED);
784 return bio;
James Bottomley f1970ba2005-06-20 14:06:52 +0200785
786 out_unmap:
787 for (i = 0; i < nr_pages; i++) {
788 if(!pages[i])
789 break;
790 page_cache_release(pages[i]);
791 }
792 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 kfree(pages);
794 bio_put(bio);
795 return ERR_PTR(ret);
796}
797
798/**
799 * bio_map_user - map user address into bio
Jens Axboe165125e2007-07-24 09:28:11 +0200800 * @q: the struct request_queue for the bio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * @bdev: destination block device
802 * @uaddr: start of user address
803 * @len: length in bytes
804 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900805 * @gfp_mask: memory allocation flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 *
807 * Map the user space address into a bio suitable for io to a block
808 * device. Returns an error pointer in case of error.
809 */
Jens Axboe165125e2007-07-24 09:28:11 +0200810struct bio *bio_map_user(struct request_queue *q, struct block_device *bdev,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900811 unsigned long uaddr, unsigned int len, int write_to_vm,
812 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
James Bottomley f1970ba2005-06-20 14:06:52 +0200814 struct sg_iovec iov;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
viro@ZenIV.linux.org.uk3f703532005-09-09 16:53:56 +0100816 iov.iov_base = (void __user *)uaddr;
James Bottomley f1970ba2005-06-20 14:06:52 +0200817 iov.iov_len = len;
818
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900819 return bio_map_user_iov(q, bdev, &iov, 1, write_to_vm, gfp_mask);
James Bottomley f1970ba2005-06-20 14:06:52 +0200820}
821
822/**
823 * bio_map_user_iov - map user sg_iovec table into bio
Jens Axboe165125e2007-07-24 09:28:11 +0200824 * @q: the struct request_queue for the bio
James Bottomley f1970ba2005-06-20 14:06:52 +0200825 * @bdev: destination block device
826 * @iov: the iovec.
827 * @iov_count: number of elements in the iovec
828 * @write_to_vm: bool indicating writing to pages or not
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900829 * @gfp_mask: memory allocation flags
James Bottomley f1970ba2005-06-20 14:06:52 +0200830 *
831 * Map the user space address into a bio suitable for io to a block
832 * device. Returns an error pointer in case of error.
833 */
Jens Axboe165125e2007-07-24 09:28:11 +0200834struct bio *bio_map_user_iov(struct request_queue *q, struct block_device *bdev,
James Bottomley f1970ba2005-06-20 14:06:52 +0200835 struct sg_iovec *iov, int iov_count,
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900836 int write_to_vm, gfp_t gfp_mask)
James Bottomley f1970ba2005-06-20 14:06:52 +0200837{
838 struct bio *bio;
James Bottomley f1970ba2005-06-20 14:06:52 +0200839
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900840 bio = __bio_map_user_iov(q, bdev, iov, iov_count, write_to_vm,
841 gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (IS_ERR(bio))
843 return bio;
844
845 /*
846 * subtle -- if __bio_map_user() ended up bouncing a bio,
847 * it would normally disappear when its bi_end_io is run.
848 * however, we need it for the unmap, so grab an extra
849 * reference to it
850 */
851 bio_get(bio);
852
Mike Christie0e75f902006-12-01 10:40:55 +0100853 return bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
856static void __bio_unmap_user(struct bio *bio)
857{
858 struct bio_vec *bvec;
859 int i;
860
861 /*
862 * make sure we dirty pages we wrote to
863 */
864 __bio_for_each_segment(bvec, bio, i, 0) {
865 if (bio_data_dir(bio) == READ)
866 set_page_dirty_lock(bvec->bv_page);
867
868 page_cache_release(bvec->bv_page);
869 }
870
871 bio_put(bio);
872}
873
874/**
875 * bio_unmap_user - unmap a bio
876 * @bio: the bio being unmapped
877 *
878 * Unmap a bio previously mapped by bio_map_user(). Must be called with
879 * a process context.
880 *
881 * bio_unmap_user() may sleep.
882 */
883void bio_unmap_user(struct bio *bio)
884{
885 __bio_unmap_user(bio);
886 bio_put(bio);
887}
888
NeilBrown6712ecf2007-09-27 12:47:43 +0200889static void bio_map_kern_endio(struct bio *bio, int err)
Jens Axboeb8238252005-06-20 14:05:27 +0200890{
Jens Axboeb8238252005-06-20 14:05:27 +0200891 bio_put(bio);
Jens Axboeb8238252005-06-20 14:05:27 +0200892}
893
894
Jens Axboe165125e2007-07-24 09:28:11 +0200895static struct bio *__bio_map_kern(struct request_queue *q, void *data,
Al Viro27496a82005-10-21 03:20:48 -0400896 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +0200897{
898 unsigned long kaddr = (unsigned long)data;
899 unsigned long end = (kaddr + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
900 unsigned long start = kaddr >> PAGE_SHIFT;
901 const int nr_pages = end - start;
902 int offset, i;
903 struct bio *bio;
904
905 bio = bio_alloc(gfp_mask, nr_pages);
906 if (!bio)
907 return ERR_PTR(-ENOMEM);
908
909 offset = offset_in_page(kaddr);
910 for (i = 0; i < nr_pages; i++) {
911 unsigned int bytes = PAGE_SIZE - offset;
912
913 if (len <= 0)
914 break;
915
916 if (bytes > len)
917 bytes = len;
918
Mike Christiedefd94b2005-12-05 02:37:06 -0600919 if (bio_add_pc_page(q, bio, virt_to_page(data), bytes,
920 offset) < bytes)
Mike Christie df46b9a2005-06-20 14:04:44 +0200921 break;
922
923 data += bytes;
924 len -= bytes;
925 offset = 0;
926 }
927
Jens Axboeb8238252005-06-20 14:05:27 +0200928 bio->bi_end_io = bio_map_kern_endio;
Mike Christie df46b9a2005-06-20 14:04:44 +0200929 return bio;
930}
931
932/**
933 * bio_map_kern - map kernel address into bio
Jens Axboe165125e2007-07-24 09:28:11 +0200934 * @q: the struct request_queue for the bio
Mike Christie df46b9a2005-06-20 14:04:44 +0200935 * @data: pointer to buffer to map
936 * @len: length in bytes
937 * @gfp_mask: allocation flags for bio allocation
938 *
939 * Map the kernel address into a bio suitable for io to a block
940 * device. Returns an error pointer in case of error.
941 */
Jens Axboe165125e2007-07-24 09:28:11 +0200942struct bio *bio_map_kern(struct request_queue *q, void *data, unsigned int len,
Al Viro27496a82005-10-21 03:20:48 -0400943 gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +0200944{
945 struct bio *bio;
946
947 bio = __bio_map_kern(q, data, len, gfp_mask);
948 if (IS_ERR(bio))
949 return bio;
950
951 if (bio->bi_size == len)
952 return bio;
953
954 /*
955 * Don't support partial mappings.
956 */
957 bio_put(bio);
958 return ERR_PTR(-EINVAL);
959}
960
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200961static void bio_copy_kern_endio(struct bio *bio, int err)
962{
963 struct bio_vec *bvec;
964 const int read = bio_data_dir(bio) == READ;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200965 struct bio_map_data *bmd = bio->bi_private;
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200966 int i;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200967 char *p = bmd->sgvecs[0].iov_base;
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200968
969 __bio_for_each_segment(bvec, bio, i, 0) {
970 char *addr = page_address(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200971 int len = bmd->iovecs[i].bv_len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200972
973 if (read && !err)
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200974 memcpy(p, addr, len);
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200975
976 __free_page(bvec->bv_page);
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200977 p += len;
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200978 }
979
FUJITA Tomonori76029ff2008-08-25 20:36:08 +0200980 bio_free_map_data(bmd);
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200981 bio_put(bio);
982}
983
984/**
985 * bio_copy_kern - copy kernel address into bio
986 * @q: the struct request_queue for the bio
987 * @data: pointer to buffer to copy
988 * @len: length in bytes
989 * @gfp_mask: allocation flags for bio and page allocation
Randy Dunlapffee0252008-04-30 09:08:54 +0200990 * @reading: data direction is READ
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200991 *
992 * copy the kernel address into a bio suitable for io to a block
993 * device. Returns an error pointer in case of error.
994 */
995struct bio *bio_copy_kern(struct request_queue *q, void *data, unsigned int len,
996 gfp_t gfp_mask, int reading)
997{
FUJITA Tomonori68154e92008-04-25 12:47:50 +0200998 struct bio *bio;
999 struct bio_vec *bvec;
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001000 int i;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001001
FUJITA Tomonori4d8ab622008-08-28 15:05:57 +09001002 bio = bio_copy_user(q, NULL, (unsigned long)data, len, 1, gfp_mask);
1003 if (IS_ERR(bio))
1004 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001005
1006 if (!reading) {
1007 void *p = data;
1008
1009 bio_for_each_segment(bvec, bio, i) {
1010 char *addr = page_address(bvec->bv_page);
1011
1012 memcpy(addr, p, bvec->bv_len);
1013 p += bvec->bv_len;
1014 }
1015 }
1016
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001017 bio->bi_end_io = bio_copy_kern_endio;
FUJITA Tomonori76029ff2008-08-25 20:36:08 +02001018
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001019 return bio;
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022/*
1023 * bio_set_pages_dirty() and bio_check_pages_dirty() are support functions
1024 * for performing direct-IO in BIOs.
1025 *
1026 * The problem is that we cannot run set_page_dirty() from interrupt context
1027 * because the required locks are not interrupt-safe. So what we can do is to
1028 * mark the pages dirty _before_ performing IO. And in interrupt context,
1029 * check that the pages are still dirty. If so, fine. If not, redirty them
1030 * in process context.
1031 *
1032 * We special-case compound pages here: normally this means reads into hugetlb
1033 * pages. The logic in here doesn't really work right for compound pages
1034 * because the VM does not uniformly chase down the head page in all cases.
1035 * But dirtiness of compound pages is pretty meaningless anyway: the VM doesn't
1036 * handle them at all. So we skip compound pages here at an early stage.
1037 *
1038 * Note that this code is very hard to test under normal circumstances because
1039 * direct-io pins the pages with get_user_pages(). This makes
1040 * is_page_cache_freeable return false, and the VM will not clean the pages.
1041 * But other code (eg, pdflush) could clean the pages if they are mapped
1042 * pagecache.
1043 *
1044 * Simply disabling the call to bio_set_pages_dirty() is a good way to test the
1045 * deferred bio dirtying paths.
1046 */
1047
1048/*
1049 * bio_set_pages_dirty() will mark all the bio's pages as dirty.
1050 */
1051void bio_set_pages_dirty(struct bio *bio)
1052{
1053 struct bio_vec *bvec = bio->bi_io_vec;
1054 int i;
1055
1056 for (i = 0; i < bio->bi_vcnt; i++) {
1057 struct page *page = bvec[i].bv_page;
1058
1059 if (page && !PageCompound(page))
1060 set_page_dirty_lock(page);
1061 }
1062}
1063
Adrian Bunk86b6c7a2008-02-18 13:48:32 +01001064static void bio_release_pages(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 struct bio_vec *bvec = bio->bi_io_vec;
1067 int i;
1068
1069 for (i = 0; i < bio->bi_vcnt; i++) {
1070 struct page *page = bvec[i].bv_page;
1071
1072 if (page)
1073 put_page(page);
1074 }
1075}
1076
1077/*
1078 * bio_check_pages_dirty() will check that all the BIO's pages are still dirty.
1079 * If they are, then fine. If, however, some pages are clean then they must
1080 * have been written out during the direct-IO read. So we take another ref on
1081 * the BIO and the offending pages and re-dirty the pages in process context.
1082 *
1083 * It is expected that bio_check_pages_dirty() will wholly own the BIO from
1084 * here on. It will run one page_cache_release() against each page and will
1085 * run one bio_put() against the BIO.
1086 */
1087
David Howells65f27f32006-11-22 14:55:48 +00001088static void bio_dirty_fn(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
David Howells65f27f32006-11-22 14:55:48 +00001090static DECLARE_WORK(bio_dirty_work, bio_dirty_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091static DEFINE_SPINLOCK(bio_dirty_lock);
1092static struct bio *bio_dirty_list;
1093
1094/*
1095 * This runs in process context
1096 */
David Howells65f27f32006-11-22 14:55:48 +00001097static void bio_dirty_fn(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 unsigned long flags;
1100 struct bio *bio;
1101
1102 spin_lock_irqsave(&bio_dirty_lock, flags);
1103 bio = bio_dirty_list;
1104 bio_dirty_list = NULL;
1105 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1106
1107 while (bio) {
1108 struct bio *next = bio->bi_private;
1109
1110 bio_set_pages_dirty(bio);
1111 bio_release_pages(bio);
1112 bio_put(bio);
1113 bio = next;
1114 }
1115}
1116
1117void bio_check_pages_dirty(struct bio *bio)
1118{
1119 struct bio_vec *bvec = bio->bi_io_vec;
1120 int nr_clean_pages = 0;
1121 int i;
1122
1123 for (i = 0; i < bio->bi_vcnt; i++) {
1124 struct page *page = bvec[i].bv_page;
1125
1126 if (PageDirty(page) || PageCompound(page)) {
1127 page_cache_release(page);
1128 bvec[i].bv_page = NULL;
1129 } else {
1130 nr_clean_pages++;
1131 }
1132 }
1133
1134 if (nr_clean_pages) {
1135 unsigned long flags;
1136
1137 spin_lock_irqsave(&bio_dirty_lock, flags);
1138 bio->bi_private = bio_dirty_list;
1139 bio_dirty_list = bio;
1140 spin_unlock_irqrestore(&bio_dirty_lock, flags);
1141 schedule_work(&bio_dirty_work);
1142 } else {
1143 bio_put(bio);
1144 }
1145}
1146
1147/**
1148 * bio_endio - end I/O on a bio
1149 * @bio: bio
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 * @error: error, if any
1151 *
1152 * Description:
NeilBrown6712ecf2007-09-27 12:47:43 +02001153 * bio_endio() will end I/O on the whole bio. bio_endio() is the
NeilBrown5bb23a62007-09-27 12:46:13 +02001154 * preferred way to end I/O on a bio, it takes care of clearing
1155 * BIO_UPTODATE on error. @error is 0 on success, and and one of the
1156 * established -Exxxx (-EIO, for instance) error values in case
1157 * something went wrong. Noone should call bi_end_io() directly on a
1158 * bio unless they own it and thus know that it has an end_io
1159 * function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 **/
NeilBrown6712ecf2007-09-27 12:47:43 +02001161void bio_endio(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 if (error)
1164 clear_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrown9cc54d42007-09-27 12:46:12 +02001165 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
1166 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
NeilBrown5bb23a62007-09-27 12:46:13 +02001168 if (bio->bi_end_io)
NeilBrown6712ecf2007-09-27 12:47:43 +02001169 bio->bi_end_io(bio, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
1172void bio_pair_release(struct bio_pair *bp)
1173{
1174 if (atomic_dec_and_test(&bp->cnt)) {
1175 struct bio *master = bp->bio1.bi_private;
1176
NeilBrown6712ecf2007-09-27 12:47:43 +02001177 bio_endio(master, bp->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 mempool_free(bp, bp->bio2.bi_private);
1179 }
1180}
1181
NeilBrown6712ecf2007-09-27 12:47:43 +02001182static void bio_pair_end_1(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
1184 struct bio_pair *bp = container_of(bi, struct bio_pair, bio1);
1185
1186 if (err)
1187 bp->error = err;
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
NeilBrown6712ecf2007-09-27 12:47:43 +02001192static void bio_pair_end_2(struct bio *bi, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 struct bio_pair *bp = container_of(bi, struct bio_pair, bio2);
1195
1196 if (err)
1197 bp->error = err;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 bio_pair_release(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
1202/*
1203 * split a bio - only worry about a bio with a single page
1204 * in it's iovec
1205 */
1206struct bio_pair *bio_split(struct bio *bi, mempool_t *pool, int first_sectors)
1207{
1208 struct bio_pair *bp = mempool_alloc(pool, GFP_NOIO);
1209
1210 if (!bp)
1211 return bp;
1212
Jens Axboe2056a782006-03-23 20:00:26 +01001213 blk_add_trace_pdu_int(bdev_get_queue(bi->bi_bdev), BLK_TA_SPLIT, bi,
1214 bi->bi_sector + first_sectors);
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 BUG_ON(bi->bi_vcnt != 1);
1217 BUG_ON(bi->bi_idx != 0);
1218 atomic_set(&bp->cnt, 3);
1219 bp->error = 0;
1220 bp->bio1 = *bi;
1221 bp->bio2 = *bi;
1222 bp->bio2.bi_sector += first_sectors;
1223 bp->bio2.bi_size -= first_sectors << 9;
1224 bp->bio1.bi_size = first_sectors << 9;
1225
1226 bp->bv1 = bi->bi_io_vec[0];
1227 bp->bv2 = bi->bi_io_vec[0];
1228 bp->bv2.bv_offset += first_sectors << 9;
1229 bp->bv2.bv_len -= first_sectors << 9;
1230 bp->bv1.bv_len = first_sectors << 9;
1231
1232 bp->bio1.bi_io_vec = &bp->bv1;
1233 bp->bio2.bi_io_vec = &bp->bv2;
1234
NeilBrowna2eb0c12006-05-22 22:35:27 -07001235 bp->bio1.bi_max_vecs = 1;
1236 bp->bio2.bi_max_vecs = 1;
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 bp->bio1.bi_end_io = bio_pair_end_1;
1239 bp->bio2.bi_end_io = bio_pair_end_2;
1240
1241 bp->bio1.bi_private = bi;
1242 bp->bio2.bi_private = pool;
1243
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001244 if (bio_integrity(bi))
1245 bio_integrity_split(bi, bp, first_sectors);
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return bp;
1248}
1249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251/*
1252 * create memory pools for biovec's in a bio_set.
1253 * use the global biovec slabs created for general use.
1254 */
Jens Axboe59725112007-04-02 10:06:42 +02001255static int biovec_create_pools(struct bio_set *bs, int pool_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
1257 int i;
1258
1259 for (i = 0; i < BIOVEC_NR_POOLS; i++) {
1260 struct biovec_slab *bp = bvec_slabs + i;
1261 mempool_t **bvp = bs->bvec_pools + i;
1262
Matthew Dobson93d23412006-03-26 01:37:50 -08001263 *bvp = mempool_create_slab_pool(pool_entries, bp->slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (!*bvp)
1265 return -ENOMEM;
1266 }
1267 return 0;
1268}
1269
1270static void biovec_free_pools(struct bio_set *bs)
1271{
1272 int i;
1273
1274 for (i = 0; i < BIOVEC_NR_POOLS; i++) {
1275 mempool_t *bvp = bs->bvec_pools[i];
1276
1277 if (bvp)
1278 mempool_destroy(bvp);
1279 }
1280
1281}
1282
1283void bioset_free(struct bio_set *bs)
1284{
1285 if (bs->bio_pool)
1286 mempool_destroy(bs->bio_pool);
1287
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001288 bioset_integrity_free(bs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 biovec_free_pools(bs);
1290
1291 kfree(bs);
1292}
1293
Jens Axboe59725112007-04-02 10:06:42 +02001294struct bio_set *bioset_create(int bio_pool_size, int bvec_pool_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Oliver Neukum11b0b5a2006-03-25 03:08:13 -08001296 struct bio_set *bs = kzalloc(sizeof(*bs), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 if (!bs)
1299 return NULL;
1300
Matthew Dobson93d23412006-03-26 01:37:50 -08001301 bs->bio_pool = mempool_create_slab_pool(bio_pool_size, bio_slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (!bs->bio_pool)
1303 goto bad;
1304
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001305 if (bioset_integrity_create(bs, bio_pool_size))
1306 goto bad;
1307
Jens Axboe59725112007-04-02 10:06:42 +02001308 if (!biovec_create_pools(bs, bvec_pool_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return bs;
1310
1311bad:
1312 bioset_free(bs);
1313 return NULL;
1314}
1315
1316static void __init biovec_init_slabs(void)
1317{
1318 int i;
1319
1320 for (i = 0; i < BIOVEC_NR_POOLS; i++) {
1321 int size;
1322 struct biovec_slab *bvs = bvec_slabs + i;
1323
1324 size = bvs->nr_vecs * sizeof(struct bio_vec);
1325 bvs->slab = kmem_cache_create(bvs->name, size, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09001326 SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328}
1329
1330static int __init init_bio(void)
1331{
Christoph Lameter0a31bd52007-05-06 14:49:57 -07001332 bio_slab = KMEM_CACHE(bio, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001334 bio_integrity_init_slab();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 biovec_init_slabs();
1336
Jens Axboe59725112007-04-02 10:06:42 +02001337 fs_bio_set = bioset_create(BIO_POOL_SIZE, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (!fs_bio_set)
1339 panic("bio: can't allocate bios\n");
1340
Matthew Dobson0eaae62a2006-03-26 01:37:47 -08001341 bio_split_pool = mempool_create_kmalloc_pool(BIO_SPLIT_ENTRIES,
1342 sizeof(struct bio_pair));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (!bio_split_pool)
1344 panic("bio: can't create split pool\n");
1345
1346 return 0;
1347}
1348
1349subsys_initcall(init_bio);
1350
1351EXPORT_SYMBOL(bio_alloc);
1352EXPORT_SYMBOL(bio_put);
Peter Osterlund36763472005-09-06 15:16:42 -07001353EXPORT_SYMBOL(bio_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354EXPORT_SYMBOL(bio_endio);
1355EXPORT_SYMBOL(bio_init);
1356EXPORT_SYMBOL(__bio_clone);
1357EXPORT_SYMBOL(bio_clone);
1358EXPORT_SYMBOL(bio_phys_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359EXPORT_SYMBOL(bio_add_page);
Mike Christie6e68af62005-11-11 05:30:27 -06001360EXPORT_SYMBOL(bio_add_pc_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361EXPORT_SYMBOL(bio_get_nr_vecs);
Jens Axboe40044ce2008-03-17 21:14:40 +01001362EXPORT_SYMBOL(bio_map_user);
1363EXPORT_SYMBOL(bio_unmap_user);
Mike Christie df46b9a2005-06-20 14:04:44 +02001364EXPORT_SYMBOL(bio_map_kern);
FUJITA Tomonori68154e92008-04-25 12:47:50 +02001365EXPORT_SYMBOL(bio_copy_kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366EXPORT_SYMBOL(bio_pair_release);
1367EXPORT_SYMBOL(bio_split);
1368EXPORT_SYMBOL(bio_split_pool);
1369EXPORT_SYMBOL(bio_copy_user);
1370EXPORT_SYMBOL(bio_uncopy_user);
1371EXPORT_SYMBOL(bioset_create);
1372EXPORT_SYMBOL(bioset_free);
1373EXPORT_SYMBOL(bio_alloc_bioset);