blob: 7b2e74da2c44ba4103d5fe7ff8b3d66ac3ea0444 [file] [log] [blame]
Jens Axboe0db92992007-11-30 09:16:50 +01001/*
2 * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
3 *
4 * Scatterlist handling helpers.
5 *
6 * This source code is licensed under the GNU General Public License,
7 * Version 2. See the file COPYING for more details.
8 */
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -05009#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Jens Axboe0db92992007-11-30 09:16:50 +010011#include <linux/scatterlist.h>
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +090012#include <linux/highmem.h>
Chris Wilsonb94de9b2010-07-28 22:59:02 +010013#include <linux/kmemleak.h>
Jens Axboe0db92992007-11-30 09:16:50 +010014
15/**
16 * sg_next - return the next scatterlist entry in a list
17 * @sg: The current sg entry
18 *
19 * Description:
20 * Usually the next entry will be @sg@ + 1, but if this sg element is part
21 * of a chained scatterlist, it could jump to the start of a new
22 * scatterlist array.
23 *
24 **/
25struct scatterlist *sg_next(struct scatterlist *sg)
26{
27#ifdef CONFIG_DEBUG_SG
28 BUG_ON(sg->sg_magic != SG_MAGIC);
29#endif
30 if (sg_is_last(sg))
31 return NULL;
32
33 sg++;
34 if (unlikely(sg_is_chain(sg)))
35 sg = sg_chain_ptr(sg);
36
37 return sg;
38}
39EXPORT_SYMBOL(sg_next);
40
41/**
Maxim Levitsky2e484612012-09-27 12:45:28 +020042 * sg_nents - return total count of entries in scatterlist
43 * @sg: The scatterlist
44 *
45 * Description:
46 * Allows to know how many entries are in sg, taking into acount
47 * chaining as well
48 *
49 **/
50int sg_nents(struct scatterlist *sg)
51{
Maxim Levitsky232f1b52012-09-28 10:38:15 +020052 int nents;
53 for (nents = 0; sg; sg = sg_next(sg))
Maxim Levitsky2e484612012-09-27 12:45:28 +020054 nents++;
Maxim Levitsky2e484612012-09-27 12:45:28 +020055 return nents;
56}
57EXPORT_SYMBOL(sg_nents);
58
Tom Lendackycfaed102015-06-01 11:15:25 -050059/**
60 * sg_nents_for_len - return total count of entries in scatterlist
61 * needed to satisfy the supplied length
62 * @sg: The scatterlist
63 * @len: The total required length
64 *
65 * Description:
66 * Determines the number of entries in sg that are required to meet
67 * the supplied length, taking into acount chaining as well
68 *
69 * Returns:
70 * the number of sg entries needed, negative error on failure
71 *
72 **/
73int sg_nents_for_len(struct scatterlist *sg, u64 len)
74{
75 int nents;
76 u64 total;
77
78 if (!len)
79 return 0;
80
81 for (nents = 0, total = 0; sg; sg = sg_next(sg)) {
82 nents++;
83 total += sg->length;
84 if (total >= len)
85 return nents;
86 }
87
88 return -EINVAL;
89}
90EXPORT_SYMBOL(sg_nents_for_len);
Maxim Levitsky2e484612012-09-27 12:45:28 +020091
92/**
Jens Axboe0db92992007-11-30 09:16:50 +010093 * sg_last - return the last scatterlist entry in a list
94 * @sgl: First entry in the scatterlist
95 * @nents: Number of entries in the scatterlist
96 *
97 * Description:
98 * Should only be used casually, it (currently) scans the entire list
99 * to get the last entry.
100 *
101 * Note that the @sgl@ pointer passed in need not be the first one,
102 * the important bit is that @nents@ denotes the number of entries that
103 * exist from @sgl@.
104 *
105 **/
106struct scatterlist *sg_last(struct scatterlist *sgl, unsigned int nents)
107{
Jens Axboe0db92992007-11-30 09:16:50 +0100108 struct scatterlist *sg, *ret = NULL;
109 unsigned int i;
110
111 for_each_sg(sgl, sg, nents, i)
112 ret = sg;
113
Jens Axboe0db92992007-11-30 09:16:50 +0100114#ifdef CONFIG_DEBUG_SG
115 BUG_ON(sgl[0].sg_magic != SG_MAGIC);
116 BUG_ON(!sg_is_last(ret));
117#endif
118 return ret;
119}
120EXPORT_SYMBOL(sg_last);
121
122/**
123 * sg_init_table - Initialize SG table
124 * @sgl: The SG table
125 * @nents: Number of entries in table
126 *
127 * Notes:
128 * If this is part of a chained sg table, sg_mark_end() should be
129 * used only on the last table part.
130 *
131 **/
132void sg_init_table(struct scatterlist *sgl, unsigned int nents)
133{
134 memset(sgl, 0, sizeof(*sgl) * nents);
135#ifdef CONFIG_DEBUG_SG
136 {
137 unsigned int i;
138 for (i = 0; i < nents; i++)
139 sgl[i].sg_magic = SG_MAGIC;
140 }
141#endif
142 sg_mark_end(&sgl[nents - 1]);
143}
144EXPORT_SYMBOL(sg_init_table);
145
146/**
147 * sg_init_one - Initialize a single entry sg list
148 * @sg: SG entry
149 * @buf: Virtual address for IO
150 * @buflen: IO length
151 *
152 **/
153void sg_init_one(struct scatterlist *sg, const void *buf, unsigned int buflen)
154{
155 sg_init_table(sg, 1);
156 sg_set_buf(sg, buf, buflen);
157}
158EXPORT_SYMBOL(sg_init_one);
159
160/*
161 * The default behaviour of sg_alloc_table() is to use these kmalloc/kfree
162 * helpers.
163 */
164static struct scatterlist *sg_kmalloc(unsigned int nents, gfp_t gfp_mask)
165{
Chris Wilsonb94de9b2010-07-28 22:59:02 +0100166 if (nents == SG_MAX_SINGLE_ALLOC) {
167 /*
168 * Kmemleak doesn't track page allocations as they are not
169 * commonly used (in a raw form) for kernel data structures.
170 * As we chain together a list of pages and then a normal
171 * kmalloc (tracked by kmemleak), in order to for that last
172 * allocation not to become decoupled (and thus a
173 * false-positive) we need to inform kmemleak of all the
174 * intermediate allocations.
175 */
176 void *ptr = (void *) __get_free_page(gfp_mask);
177 kmemleak_alloc(ptr, PAGE_SIZE, 1, gfp_mask);
178 return ptr;
179 } else
Jens Axboe0db92992007-11-30 09:16:50 +0100180 return kmalloc(nents * sizeof(struct scatterlist), gfp_mask);
181}
182
183static void sg_kfree(struct scatterlist *sg, unsigned int nents)
184{
Chris Wilsonb94de9b2010-07-28 22:59:02 +0100185 if (nents == SG_MAX_SINGLE_ALLOC) {
186 kmemleak_free(sg);
Jens Axboe0db92992007-11-30 09:16:50 +0100187 free_page((unsigned long) sg);
Chris Wilsonb94de9b2010-07-28 22:59:02 +0100188 } else
Jens Axboe0db92992007-11-30 09:16:50 +0100189 kfree(sg);
190}
191
192/**
193 * __sg_free_table - Free a previously mapped sg table
194 * @table: The sg table header to use
James Bottomley7cedb1f2008-01-13 14:15:28 -0600195 * @max_ents: The maximum number of entries per single scatterlist
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200196 * @skip_first_chunk: don't free the (preallocated) first scatterlist chunk
Jens Axboe0db92992007-11-30 09:16:50 +0100197 * @free_fn: Free function
198 *
199 * Description:
James Bottomley7cedb1f2008-01-13 14:15:28 -0600200 * Free an sg table previously allocated and setup with
201 * __sg_alloc_table(). The @max_ents value must be identical to
202 * that previously used with __sg_alloc_table().
Jens Axboe0db92992007-11-30 09:16:50 +0100203 *
204 **/
James Bottomley7cedb1f2008-01-13 14:15:28 -0600205void __sg_free_table(struct sg_table *table, unsigned int max_ents,
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200206 bool skip_first_chunk, sg_free_fn *free_fn)
Jens Axboe0db92992007-11-30 09:16:50 +0100207{
208 struct scatterlist *sgl, *next;
209
210 if (unlikely(!table->sgl))
211 return;
212
213 sgl = table->sgl;
214 while (table->orig_nents) {
215 unsigned int alloc_size = table->orig_nents;
216 unsigned int sg_size;
217
218 /*
James Bottomley7cedb1f2008-01-13 14:15:28 -0600219 * If we have more than max_ents segments left,
Jens Axboe0db92992007-11-30 09:16:50 +0100220 * then assign 'next' to the sg table after the current one.
221 * sg_size is then one less than alloc size, since the last
222 * element is the chain pointer.
223 */
James Bottomley7cedb1f2008-01-13 14:15:28 -0600224 if (alloc_size > max_ents) {
225 next = sg_chain_ptr(&sgl[max_ents - 1]);
226 alloc_size = max_ents;
Jens Axboe0db92992007-11-30 09:16:50 +0100227 sg_size = alloc_size - 1;
228 } else {
229 sg_size = alloc_size;
230 next = NULL;
231 }
232
233 table->orig_nents -= sg_size;
Tony Battersbyc21e59d2014-10-23 15:10:21 -0400234 if (skip_first_chunk)
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200235 skip_first_chunk = false;
Tony Battersbyc21e59d2014-10-23 15:10:21 -0400236 else
237 free_fn(sgl, alloc_size);
Jens Axboe0db92992007-11-30 09:16:50 +0100238 sgl = next;
239 }
240
241 table->sgl = NULL;
242}
243EXPORT_SYMBOL(__sg_free_table);
244
245/**
246 * sg_free_table - Free a previously allocated sg table
247 * @table: The mapped sg table header
248 *
249 **/
250void sg_free_table(struct sg_table *table)
251{
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200252 __sg_free_table(table, SG_MAX_SINGLE_ALLOC, false, sg_kfree);
Jens Axboe0db92992007-11-30 09:16:50 +0100253}
254EXPORT_SYMBOL(sg_free_table);
255
256/**
257 * __sg_alloc_table - Allocate and initialize an sg table with given allocator
258 * @table: The sg table header to use
259 * @nents: Number of entries in sg list
James Bottomley7cedb1f2008-01-13 14:15:28 -0600260 * @max_ents: The maximum number of entries the allocator returns per call
Jens Axboe0db92992007-11-30 09:16:50 +0100261 * @gfp_mask: GFP allocation mask
262 * @alloc_fn: Allocator to use
263 *
James Bottomley7cedb1f2008-01-13 14:15:28 -0600264 * Description:
265 * This function returns a @table @nents long. The allocator is
266 * defined to return scatterlist chunks of maximum size @max_ents.
267 * Thus if @nents is bigger than @max_ents, the scatterlists will be
268 * chained in units of @max_ents.
269 *
Jens Axboe0db92992007-11-30 09:16:50 +0100270 * Notes:
271 * If this function returns non-0 (eg failure), the caller must call
272 * __sg_free_table() to cleanup any leftover allocations.
273 *
274 **/
James Bottomley7cedb1f2008-01-13 14:15:28 -0600275int __sg_alloc_table(struct sg_table *table, unsigned int nents,
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200276 unsigned int max_ents, struct scatterlist *first_chunk,
277 gfp_t gfp_mask, sg_alloc_fn *alloc_fn)
Jens Axboe0db92992007-11-30 09:16:50 +0100278{
279 struct scatterlist *sg, *prv;
280 unsigned int left;
281
Dan Carpenter27daabd2013-07-08 16:01:58 -0700282 memset(table, 0, sizeof(*table));
283
284 if (nents == 0)
285 return -EINVAL;
Laura Abbott308c09f2014-08-08 14:23:25 -0700286#ifndef CONFIG_ARCH_HAS_SG_CHAIN
Nick Bowler6fd59a82012-12-17 16:05:20 -0800287 if (WARN_ON_ONCE(nents > max_ents))
288 return -EINVAL;
Jens Axboe0db92992007-11-30 09:16:50 +0100289#endif
290
Jens Axboe0db92992007-11-30 09:16:50 +0100291 left = nents;
292 prv = NULL;
293 do {
294 unsigned int sg_size, alloc_size = left;
295
James Bottomley7cedb1f2008-01-13 14:15:28 -0600296 if (alloc_size > max_ents) {
297 alloc_size = max_ents;
Jens Axboe0db92992007-11-30 09:16:50 +0100298 sg_size = alloc_size - 1;
299 } else
300 sg_size = alloc_size;
301
302 left -= sg_size;
303
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200304 if (first_chunk) {
305 sg = first_chunk;
306 first_chunk = NULL;
307 } else {
308 sg = alloc_fn(alloc_size, gfp_mask);
309 }
Jeffrey Carlyleedce6822010-08-30 19:55:09 +0200310 if (unlikely(!sg)) {
311 /*
312 * Adjust entry count to reflect that the last
313 * entry of the previous table won't be used for
314 * linkage. Without this, sg_kfree() may get
315 * confused.
316 */
317 if (prv)
318 table->nents = ++table->orig_nents;
319
320 return -ENOMEM;
321 }
Jens Axboe0db92992007-11-30 09:16:50 +0100322
323 sg_init_table(sg, alloc_size);
324 table->nents = table->orig_nents += sg_size;
325
326 /*
327 * If this is the first mapping, assign the sg table header.
328 * If this is not the first mapping, chain previous part.
329 */
330 if (prv)
James Bottomley7cedb1f2008-01-13 14:15:28 -0600331 sg_chain(prv, max_ents, sg);
Jens Axboe0db92992007-11-30 09:16:50 +0100332 else
333 table->sgl = sg;
334
335 /*
336 * If no more entries after this one, mark the end
337 */
338 if (!left)
339 sg_mark_end(&sg[sg_size - 1]);
340
Jens Axboe0db92992007-11-30 09:16:50 +0100341 prv = sg;
342 } while (left);
343
344 return 0;
345}
346EXPORT_SYMBOL(__sg_alloc_table);
347
348/**
349 * sg_alloc_table - Allocate and initialize an sg table
350 * @table: The sg table header to use
351 * @nents: Number of entries in sg list
352 * @gfp_mask: GFP allocation mask
353 *
354 * Description:
355 * Allocate and initialize an sg table. If @nents@ is larger than
356 * SG_MAX_SINGLE_ALLOC a chained sg table will be setup.
357 *
358 **/
359int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
360{
361 int ret;
362
James Bottomley7cedb1f2008-01-13 14:15:28 -0600363 ret = __sg_alloc_table(table, nents, SG_MAX_SINGLE_ALLOC,
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200364 NULL, gfp_mask, sg_kmalloc);
Jens Axboe0db92992007-11-30 09:16:50 +0100365 if (unlikely(ret))
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200366 __sg_free_table(table, SG_MAX_SINGLE_ALLOC, false, sg_kfree);
Jens Axboe0db92992007-11-30 09:16:50 +0100367
368 return ret;
369}
370EXPORT_SYMBOL(sg_alloc_table);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900371
372/**
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200373 * sg_alloc_table_from_pages - Allocate and initialize an sg table from
374 * an array of pages
375 * @sgt: The sg table header to use
376 * @pages: Pointer to an array of page pointers
377 * @n_pages: Number of pages in the pages array
378 * @offset: Offset from start of the first page to the start of a buffer
379 * @size: Number of valid bytes in the buffer (after offset)
380 * @gfp_mask: GFP allocation mask
381 *
382 * Description:
383 * Allocate and initialize an sg table from a list of pages. Contiguous
384 * ranges of the pages are squashed into a single scatterlist node. A user
385 * may provide an offset at a start and a size of valid data in a buffer
386 * specified by the page array. The returned sg table is released by
387 * sg_free_table.
388 *
389 * Returns:
390 * 0 on success, negative error on failure
391 */
392int sg_alloc_table_from_pages(struct sg_table *sgt,
393 struct page **pages, unsigned int n_pages,
Tvrtko Ursulinc4860ad2017-07-31 19:55:08 +0100394 unsigned int offset, unsigned long size,
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200395 gfp_t gfp_mask)
396{
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100397 const unsigned int max_segment = SCATTERLIST_MAX_SEGMENT;
398 unsigned int chunks, cur_page, seg_len, i;
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200399 int ret;
400 struct scatterlist *s;
401
402 /* compute number of contiguous chunks */
403 chunks = 1;
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100404 seg_len = 0;
405 for (i = 1; i < n_pages; i++) {
406 seg_len += PAGE_SIZE;
407 if (seg_len >= max_segment ||
408 page_to_pfn(pages[i]) != page_to_pfn(pages[i - 1]) + 1) {
409 chunks++;
410 seg_len = 0;
411 }
412 }
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200413
414 ret = sg_alloc_table(sgt, chunks, gfp_mask);
415 if (unlikely(ret))
416 return ret;
417
418 /* merging chunks and putting them into the scatterlist */
419 cur_page = 0;
420 for_each_sg(sgt->sgl, s, sgt->orig_nents, i) {
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100421 unsigned int j, chunk_size;
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200422
423 /* look for the end of the current chunk */
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100424 seg_len = 0;
425 for (j = cur_page + 1; j < n_pages; j++) {
426 seg_len += PAGE_SIZE;
427 if (seg_len >= max_segment ||
428 page_to_pfn(pages[j]) !=
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200429 page_to_pfn(pages[j - 1]) + 1)
430 break;
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100431 }
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200432
433 chunk_size = ((j - cur_page) << PAGE_SHIFT) - offset;
Tvrtko Ursulinc1259062017-08-03 10:13:12 +0100434 sg_set_page(s, pages[cur_page],
435 min_t(unsigned long, size, chunk_size), offset);
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200436 size -= chunk_size;
437 offset = 0;
438 cur_page = j;
439 }
440
441 return 0;
442}
443EXPORT_SYMBOL(sg_alloc_table_from_pages);
444
Imre Deaka321e912013-02-27 17:02:56 -0800445void __sg_page_iter_start(struct sg_page_iter *piter,
446 struct scatterlist *sglist, unsigned int nents,
447 unsigned long pgoffset)
448{
449 piter->__pg_advance = 0;
450 piter->__nents = nents;
451
Imre Deaka321e912013-02-27 17:02:56 -0800452 piter->sg = sglist;
453 piter->sg_pgoffset = pgoffset;
454}
455EXPORT_SYMBOL(__sg_page_iter_start);
456
457static int sg_page_count(struct scatterlist *sg)
458{
459 return PAGE_ALIGN(sg->offset + sg->length) >> PAGE_SHIFT;
460}
461
462bool __sg_page_iter_next(struct sg_page_iter *piter)
463{
464 if (!piter->__nents || !piter->sg)
465 return false;
466
467 piter->sg_pgoffset += piter->__pg_advance;
468 piter->__pg_advance = 1;
469
470 while (piter->sg_pgoffset >= sg_page_count(piter->sg)) {
471 piter->sg_pgoffset -= sg_page_count(piter->sg);
472 piter->sg = sg_next(piter->sg);
473 if (!--piter->__nents || !piter->sg)
474 return false;
475 }
Imre Deaka321e912013-02-27 17:02:56 -0800476
477 return true;
478}
479EXPORT_SYMBOL(__sg_page_iter_next);
480
Tomasz Stanislawskiefc42bc2012-06-18 09:25:01 +0200481/**
Tejun Heo137d3ed2008-07-19 23:03:35 +0900482 * sg_miter_start - start mapping iteration over a sg list
483 * @miter: sg mapping iter to be started
484 * @sgl: sg list to iterate over
485 * @nents: number of sg entries
486 *
487 * Description:
488 * Starts mapping iterator @miter.
489 *
490 * Context:
491 * Don't care.
492 */
493void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
494 unsigned int nents, unsigned int flags)
495{
496 memset(miter, 0, sizeof(struct sg_mapping_iter));
497
Imre Deak4225fc82013-02-27 17:02:57 -0800498 __sg_page_iter_start(&miter->piter, sgl, nents, 0);
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200499 WARN_ON(!(flags & (SG_MITER_TO_SG | SG_MITER_FROM_SG)));
Tejun Heo137d3ed2008-07-19 23:03:35 +0900500 miter->__flags = flags;
501}
502EXPORT_SYMBOL(sg_miter_start);
503
Akinobu Mita11052002013-07-08 16:01:52 -0700504static bool sg_miter_get_next_page(struct sg_mapping_iter *miter)
505{
506 if (!miter->__remaining) {
507 struct scatterlist *sg;
508 unsigned long pgoffset;
509
510 if (!__sg_page_iter_next(&miter->piter))
511 return false;
512
513 sg = miter->piter.sg;
514 pgoffset = miter->piter.sg_pgoffset;
515
516 miter->__offset = pgoffset ? 0 : sg->offset;
517 miter->__remaining = sg->offset + sg->length -
518 (pgoffset << PAGE_SHIFT) - miter->__offset;
519 miter->__remaining = min_t(unsigned long, miter->__remaining,
520 PAGE_SIZE - miter->__offset);
521 }
522
523 return true;
524}
525
Tejun Heo137d3ed2008-07-19 23:03:35 +0900526/**
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700527 * sg_miter_skip - reposition mapping iterator
528 * @miter: sg mapping iter to be skipped
529 * @offset: number of bytes to plus the current location
530 *
531 * Description:
532 * Sets the offset of @miter to its current location plus @offset bytes.
533 * If mapping iterator @miter has been proceeded by sg_miter_next(), this
534 * stops @miter.
535 *
536 * Context:
537 * Don't care if @miter is stopped, or not proceeded yet.
538 * Otherwise, preemption disabled if the SG_MITER_ATOMIC is set.
539 *
540 * Returns:
541 * true if @miter contains the valid mapping. false if end of sg
542 * list is reached.
543 */
Ming Lei0d6077f2013-11-26 12:43:37 +0800544bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset)
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700545{
546 sg_miter_stop(miter);
547
548 while (offset) {
549 off_t consumed;
550
551 if (!sg_miter_get_next_page(miter))
552 return false;
553
554 consumed = min_t(off_t, offset, miter->__remaining);
555 miter->__offset += consumed;
556 miter->__remaining -= consumed;
557 offset -= consumed;
558 }
559
560 return true;
561}
Ming Lei0d6077f2013-11-26 12:43:37 +0800562EXPORT_SYMBOL(sg_miter_skip);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700563
564/**
Tejun Heo137d3ed2008-07-19 23:03:35 +0900565 * sg_miter_next - proceed mapping iterator to the next mapping
566 * @miter: sg mapping iter to proceed
567 *
568 * Description:
Tejun Heo8290e2d2012-10-04 17:13:28 -0700569 * Proceeds @miter to the next mapping. @miter should have been started
570 * using sg_miter_start(). On successful return, @miter->page,
571 * @miter->addr and @miter->length point to the current mapping.
Tejun Heo137d3ed2008-07-19 23:03:35 +0900572 *
573 * Context:
Tejun Heo8290e2d2012-10-04 17:13:28 -0700574 * Preemption disabled if SG_MITER_ATOMIC. Preemption must stay disabled
575 * till @miter is stopped. May sleep if !SG_MITER_ATOMIC.
Tejun Heo137d3ed2008-07-19 23:03:35 +0900576 *
577 * Returns:
578 * true if @miter contains the next mapping. false if end of sg
579 * list is reached.
580 */
581bool sg_miter_next(struct sg_mapping_iter *miter)
582{
Tejun Heo137d3ed2008-07-19 23:03:35 +0900583 sg_miter_stop(miter);
584
Imre Deak4225fc82013-02-27 17:02:57 -0800585 /*
586 * Get to the next page if necessary.
587 * __remaining, __offset is adjusted by sg_miter_stop
588 */
Akinobu Mita11052002013-07-08 16:01:52 -0700589 if (!sg_miter_get_next_page(miter))
590 return false;
Imre Deak4225fc82013-02-27 17:02:57 -0800591
Imre Deak2db76d72013-03-26 15:14:18 +0200592 miter->page = sg_page_iter_page(&miter->piter);
Imre Deak4225fc82013-02-27 17:02:57 -0800593 miter->consumed = miter->length = miter->__remaining;
Tejun Heo137d3ed2008-07-19 23:03:35 +0900594
595 if (miter->__flags & SG_MITER_ATOMIC)
Imre Deak4225fc82013-02-27 17:02:57 -0800596 miter->addr = kmap_atomic(miter->page) + miter->__offset;
Tejun Heo137d3ed2008-07-19 23:03:35 +0900597 else
Imre Deak4225fc82013-02-27 17:02:57 -0800598 miter->addr = kmap(miter->page) + miter->__offset;
Tejun Heo137d3ed2008-07-19 23:03:35 +0900599
600 return true;
601}
602EXPORT_SYMBOL(sg_miter_next);
603
604/**
605 * sg_miter_stop - stop mapping iteration
606 * @miter: sg mapping iter to be stopped
607 *
608 * Description:
609 * Stops mapping iterator @miter. @miter should have been started
Masahiro Yamada4ba6a2b2016-02-08 16:09:08 +0900610 * using sg_miter_start(). A stopped iteration can be resumed by
611 * calling sg_miter_next() on it. This is useful when resources (kmap)
612 * need to be released during iteration.
Tejun Heo137d3ed2008-07-19 23:03:35 +0900613 *
614 * Context:
Tejun Heo8290e2d2012-10-04 17:13:28 -0700615 * Preemption disabled if the SG_MITER_ATOMIC is set. Don't care
616 * otherwise.
Tejun Heo137d3ed2008-07-19 23:03:35 +0900617 */
618void sg_miter_stop(struct sg_mapping_iter *miter)
619{
620 WARN_ON(miter->consumed > miter->length);
621
622 /* drop resources from the last iteration */
623 if (miter->addr) {
624 miter->__offset += miter->consumed;
Imre Deak4225fc82013-02-27 17:02:57 -0800625 miter->__remaining -= miter->consumed;
Tejun Heo137d3ed2008-07-19 23:03:35 +0900626
Ming Lei3d77b502013-10-31 16:34:17 -0700627 if ((miter->__flags & SG_MITER_TO_SG) &&
628 !PageSlab(miter->page))
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200629 flush_kernel_dcache_page(miter->page);
630
Tejun Heo137d3ed2008-07-19 23:03:35 +0900631 if (miter->__flags & SG_MITER_ATOMIC) {
Tejun Heo8290e2d2012-10-04 17:13:28 -0700632 WARN_ON_ONCE(preemptible());
Cong Wangc3eede82011-11-25 23:14:39 +0800633 kunmap_atomic(miter->addr);
Tejun Heo137d3ed2008-07-19 23:03:35 +0900634 } else
Arjan van de Venf652c522008-11-19 15:36:19 -0800635 kunmap(miter->page);
Tejun Heo137d3ed2008-07-19 23:03:35 +0900636
637 miter->page = NULL;
638 miter->addr = NULL;
639 miter->length = 0;
640 miter->consumed = 0;
641 }
642}
643EXPORT_SYMBOL(sg_miter_stop);
644
645/**
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900646 * sg_copy_buffer - Copy data between a linear buffer and an SG list
647 * @sgl: The SG list
648 * @nents: Number of SG entries
649 * @buf: Where to copy from
650 * @buflen: The number of bytes to copy
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700651 * @skip: Number of bytes to skip before copying
652 * @to_buffer: transfer direction (true == from an sg list to a
653 * buffer, false == from a buffer to an sg list
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900654 *
655 * Returns the number of copied bytes.
656 *
657 **/
Dave Gordon386ecb12015-06-30 14:58:57 -0700658size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
659 size_t buflen, off_t skip, bool to_buffer)
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900660{
Tejun Heo137d3ed2008-07-19 23:03:35 +0900661 unsigned int offset = 0;
662 struct sg_mapping_iter miter;
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200663 unsigned int sg_flags = SG_MITER_ATOMIC;
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900664
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200665 if (to_buffer)
666 sg_flags |= SG_MITER_FROM_SG;
667 else
668 sg_flags |= SG_MITER_TO_SG;
669
670 sg_miter_start(&miter, sgl, nents, sg_flags);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900671
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700672 if (!sg_miter_skip(&miter, skip))
673 return false;
674
Gilad Ben-Yossef1d5210ef2017-02-27 14:28:27 -0800675 while ((offset < buflen) && sg_miter_next(&miter)) {
Tejun Heo137d3ed2008-07-19 23:03:35 +0900676 unsigned int len;
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900677
Tejun Heo137d3ed2008-07-19 23:03:35 +0900678 len = min(miter.length, buflen - offset);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900679
Tejun Heo137d3ed2008-07-19 23:03:35 +0900680 if (to_buffer)
681 memcpy(buf + offset, miter.addr, len);
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200682 else
Tejun Heo137d3ed2008-07-19 23:03:35 +0900683 memcpy(miter.addr, buf + offset, len);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900684
Tejun Heo137d3ed2008-07-19 23:03:35 +0900685 offset += len;
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900686 }
687
Tejun Heo137d3ed2008-07-19 23:03:35 +0900688 sg_miter_stop(&miter);
689
690 return offset;
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900691}
Dave Gordon386ecb12015-06-30 14:58:57 -0700692EXPORT_SYMBOL(sg_copy_buffer);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900693
694/**
695 * sg_copy_from_buffer - Copy from a linear buffer to an SG list
696 * @sgl: The SG list
697 * @nents: Number of SG entries
698 * @buf: Where to copy from
699 * @buflen: The number of bytes to copy
700 *
701 * Returns the number of copied bytes.
702 *
703 **/
704size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700705 const void *buf, size_t buflen)
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900706{
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700707 return sg_copy_buffer(sgl, nents, (void *)buf, buflen, 0, false);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900708}
709EXPORT_SYMBOL(sg_copy_from_buffer);
710
711/**
712 * sg_copy_to_buffer - Copy from an SG list to a linear buffer
713 * @sgl: The SG list
714 * @nents: Number of SG entries
715 * @buf: Where to copy to
716 * @buflen: The number of bytes to copy
717 *
718 * Returns the number of copied bytes.
719 *
720 **/
721size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
722 void *buf, size_t buflen)
723{
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700724 return sg_copy_buffer(sgl, nents, buf, buflen, 0, true);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900725}
726EXPORT_SYMBOL(sg_copy_to_buffer);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700727
728/**
729 * sg_pcopy_from_buffer - Copy from a linear buffer to an SG list
730 * @sgl: The SG list
731 * @nents: Number of SG entries
732 * @buf: Where to copy from
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700733 * @buflen: The number of bytes to copy
Dave Gordon4dc7daf2015-06-30 14:58:52 -0700734 * @skip: Number of bytes to skip before copying
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700735 *
736 * Returns the number of copied bytes.
737 *
738 **/
739size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700740 const void *buf, size_t buflen, off_t skip)
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700741{
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700742 return sg_copy_buffer(sgl, nents, (void *)buf, buflen, skip, false);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700743}
744EXPORT_SYMBOL(sg_pcopy_from_buffer);
745
746/**
747 * sg_pcopy_to_buffer - Copy from an SG list to a linear buffer
748 * @sgl: The SG list
749 * @nents: Number of SG entries
750 * @buf: Where to copy to
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700751 * @buflen: The number of bytes to copy
Dave Gordon4dc7daf2015-06-30 14:58:52 -0700752 * @skip: Number of bytes to skip before copying
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700753 *
754 * Returns the number of copied bytes.
755 *
756 **/
757size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
758 void *buf, size_t buflen, off_t skip)
759{
760 return sg_copy_buffer(sgl, nents, buf, buflen, skip, true);
761}
762EXPORT_SYMBOL(sg_pcopy_to_buffer);
Johannes Thumshirn0945e562017-06-07 11:45:28 +0200763
764/**
765 * sg_zero_buffer - Zero-out a part of a SG list
766 * @sgl: The SG list
767 * @nents: Number of SG entries
768 * @buflen: The number of bytes to zero out
769 * @skip: Number of bytes to skip before zeroing
770 *
771 * Returns the number of bytes zeroed.
772 **/
773size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
774 size_t buflen, off_t skip)
775{
776 unsigned int offset = 0;
777 struct sg_mapping_iter miter;
778 unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
779
780 sg_miter_start(&miter, sgl, nents, sg_flags);
781
782 if (!sg_miter_skip(&miter, skip))
783 return false;
784
785 while (offset < buflen && sg_miter_next(&miter)) {
786 unsigned int len;
787
788 len = min(miter.length, buflen - offset);
789 memset(miter.addr, 0, len);
790
791 offset += len;
792 }
793
794 sg_miter_stop(&miter);
795 return offset;
796}
797EXPORT_SYMBOL(sg_zero_buffer);