2 * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
4 * Scatterlist handling helpers.
6 * This source code is licensed under the GNU General Public License,
7 * Version 2. See the file COPYING for more details.
9 #include <linux/export.h>
10 #include <linux/slab.h>
11 #include <linux/scatterlist.h>
12 #include <linux/highmem.h>
13 #include <linux/kmemleak.h>
16 * sg_next - return the next scatterlist entry in a list
17 * @sg: The current sg entry
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
25 struct scatterlist *sg_next(struct scatterlist *sg)
27 #ifdef CONFIG_DEBUG_SG
28 BUG_ON(sg->sg_magic != SG_MAGIC);
34 if (unlikely(sg_is_chain(sg)))
35 sg = sg_chain_ptr(sg);
39 EXPORT_SYMBOL(sg_next);
42 * sg_nents - return total count of entries in scatterlist
43 * @sg: The scatterlist
46 * Allows to know how many entries are in sg, taking into acount
50 int sg_nents(struct scatterlist *sg)
53 for (nents = 0; sg; sg = sg_next(sg))
57 EXPORT_SYMBOL(sg_nents);
61 * sg_last - return the last scatterlist entry in a list
62 * @sgl: First entry in the scatterlist
63 * @nents: Number of entries in the scatterlist
66 * Should only be used casually, it (currently) scans the entire list
67 * to get the last entry.
69 * Note that the @sgl@ pointer passed in need not be the first one,
70 * the important bit is that @nents@ denotes the number of entries that
74 struct scatterlist *sg_last(struct scatterlist *sgl, unsigned int nents)
76 #ifndef ARCH_HAS_SG_CHAIN
77 struct scatterlist *ret = &sgl[nents - 1];
79 struct scatterlist *sg, *ret = NULL;
82 for_each_sg(sgl, sg, nents, i)
86 #ifdef CONFIG_DEBUG_SG
87 BUG_ON(sgl[0].sg_magic != SG_MAGIC);
88 BUG_ON(!sg_is_last(ret));
92 EXPORT_SYMBOL(sg_last);
95 * sg_init_table - Initialize SG table
97 * @nents: Number of entries in table
100 * If this is part of a chained sg table, sg_mark_end() should be
101 * used only on the last table part.
104 void sg_init_table(struct scatterlist *sgl, unsigned int nents)
106 memset(sgl, 0, sizeof(*sgl) * nents);
107 #ifdef CONFIG_DEBUG_SG
110 for (i = 0; i < nents; i++)
111 sgl[i].sg_magic = SG_MAGIC;
114 sg_mark_end(&sgl[nents - 1]);
116 EXPORT_SYMBOL(sg_init_table);
119 * sg_init_one - Initialize a single entry sg list
121 * @buf: Virtual address for IO
125 void sg_init_one(struct scatterlist *sg, const void *buf, unsigned int buflen)
127 sg_init_table(sg, 1);
128 sg_set_buf(sg, buf, buflen);
130 EXPORT_SYMBOL(sg_init_one);
133 * The default behaviour of sg_alloc_table() is to use these kmalloc/kfree
136 static struct scatterlist *sg_kmalloc(unsigned int nents, gfp_t gfp_mask)
138 if (nents == SG_MAX_SINGLE_ALLOC) {
140 * Kmemleak doesn't track page allocations as they are not
141 * commonly used (in a raw form) for kernel data structures.
142 * As we chain together a list of pages and then a normal
143 * kmalloc (tracked by kmemleak), in order to for that last
144 * allocation not to become decoupled (and thus a
145 * false-positive) we need to inform kmemleak of all the
146 * intermediate allocations.
148 void *ptr = (void *) __get_free_page(gfp_mask);
149 kmemleak_alloc(ptr, PAGE_SIZE, 1, gfp_mask);
152 return kmalloc(nents * sizeof(struct scatterlist), gfp_mask);
155 static void sg_kfree(struct scatterlist *sg, unsigned int nents)
157 if (nents == SG_MAX_SINGLE_ALLOC) {
159 free_page((unsigned long) sg);
165 * __sg_free_table - Free a previously mapped sg table
166 * @table: The sg table header to use
167 * @max_ents: The maximum number of entries per single scatterlist
168 * @free_fn: Free function
171 * Free an sg table previously allocated and setup with
172 * __sg_alloc_table(). The @max_ents value must be identical to
173 * that previously used with __sg_alloc_table().
176 void __sg_free_table(struct sg_table *table, unsigned int max_ents,
179 struct scatterlist *sgl, *next;
181 if (unlikely(!table->sgl))
185 while (table->orig_nents) {
186 unsigned int alloc_size = table->orig_nents;
187 unsigned int sg_size;
190 * If we have more than max_ents segments left,
191 * then assign 'next' to the sg table after the current one.
192 * sg_size is then one less than alloc size, since the last
193 * element is the chain pointer.
195 if (alloc_size > max_ents) {
196 next = sg_chain_ptr(&sgl[max_ents - 1]);
197 alloc_size = max_ents;
198 sg_size = alloc_size - 1;
200 sg_size = alloc_size;
204 table->orig_nents -= sg_size;
205 free_fn(sgl, alloc_size);
211 EXPORT_SYMBOL(__sg_free_table);
214 * sg_free_table - Free a previously allocated sg table
215 * @table: The mapped sg table header
218 void sg_free_table(struct sg_table *table)
220 __sg_free_table(table, SG_MAX_SINGLE_ALLOC, sg_kfree);
222 EXPORT_SYMBOL(sg_free_table);
225 * __sg_alloc_table - Allocate and initialize an sg table with given allocator
226 * @table: The sg table header to use
227 * @nents: Number of entries in sg list
228 * @max_ents: The maximum number of entries the allocator returns per call
229 * @gfp_mask: GFP allocation mask
230 * @alloc_fn: Allocator to use
233 * This function returns a @table @nents long. The allocator is
234 * defined to return scatterlist chunks of maximum size @max_ents.
235 * Thus if @nents is bigger than @max_ents, the scatterlists will be
236 * chained in units of @max_ents.
239 * If this function returns non-0 (eg failure), the caller must call
240 * __sg_free_table() to cleanup any leftover allocations.
243 int __sg_alloc_table(struct sg_table *table, unsigned int nents,
244 unsigned int max_ents, gfp_t gfp_mask,
245 sg_alloc_fn *alloc_fn)
247 struct scatterlist *sg, *prv;
250 memset(table, 0, sizeof(*table));
254 #ifndef ARCH_HAS_SG_CHAIN
255 if (WARN_ON_ONCE(nents > max_ents))
262 unsigned int sg_size, alloc_size = left;
264 if (alloc_size > max_ents) {
265 alloc_size = max_ents;
266 sg_size = alloc_size - 1;
268 sg_size = alloc_size;
272 sg = alloc_fn(alloc_size, gfp_mask);
275 * Adjust entry count to reflect that the last
276 * entry of the previous table won't be used for
277 * linkage. Without this, sg_kfree() may get
281 table->nents = ++table->orig_nents;
286 sg_init_table(sg, alloc_size);
287 table->nents = table->orig_nents += sg_size;
290 * If this is the first mapping, assign the sg table header.
291 * If this is not the first mapping, chain previous part.
294 sg_chain(prv, max_ents, sg);
299 * If no more entries after this one, mark the end
302 sg_mark_end(&sg[sg_size - 1]);
309 EXPORT_SYMBOL(__sg_alloc_table);
312 * sg_alloc_table - Allocate and initialize an sg table
313 * @table: The sg table header to use
314 * @nents: Number of entries in sg list
315 * @gfp_mask: GFP allocation mask
318 * Allocate and initialize an sg table. If @nents@ is larger than
319 * SG_MAX_SINGLE_ALLOC a chained sg table will be setup.
322 int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
326 ret = __sg_alloc_table(table, nents, SG_MAX_SINGLE_ALLOC,
327 gfp_mask, sg_kmalloc);
329 __sg_free_table(table, SG_MAX_SINGLE_ALLOC, sg_kfree);
333 EXPORT_SYMBOL(sg_alloc_table);
336 * sg_alloc_table_from_pages - Allocate and initialize an sg table from
338 * @sgt: The sg table header to use
339 * @pages: Pointer to an array of page pointers
340 * @n_pages: Number of pages in the pages array
341 * @offset: Offset from start of the first page to the start of a buffer
342 * @size: Number of valid bytes in the buffer (after offset)
343 * @gfp_mask: GFP allocation mask
346 * Allocate and initialize an sg table from a list of pages. Contiguous
347 * ranges of the pages are squashed into a single scatterlist node. A user
348 * may provide an offset at a start and a size of valid data in a buffer
349 * specified by the page array. The returned sg table is released by
353 * 0 on success, negative error on failure
355 int sg_alloc_table_from_pages(struct sg_table *sgt,
356 struct page **pages, unsigned int n_pages,
357 unsigned long offset, unsigned long size,
362 unsigned int cur_page;
364 struct scatterlist *s;
366 /* compute number of contiguous chunks */
368 for (i = 1; i < n_pages; ++i)
369 if (page_to_pfn(pages[i]) != page_to_pfn(pages[i - 1]) + 1)
372 ret = sg_alloc_table(sgt, chunks, gfp_mask);
376 /* merging chunks and putting them into the scatterlist */
378 for_each_sg(sgt->sgl, s, sgt->orig_nents, i) {
379 unsigned long chunk_size;
382 /* look for the end of the current chunk */
383 for (j = cur_page + 1; j < n_pages; ++j)
384 if (page_to_pfn(pages[j]) !=
385 page_to_pfn(pages[j - 1]) + 1)
388 chunk_size = ((j - cur_page) << PAGE_SHIFT) - offset;
389 sg_set_page(s, pages[cur_page], min(size, chunk_size), offset);
397 EXPORT_SYMBOL(sg_alloc_table_from_pages);
399 void __sg_page_iter_start(struct sg_page_iter *piter,
400 struct scatterlist *sglist, unsigned int nents,
401 unsigned long pgoffset)
403 piter->__pg_advance = 0;
404 piter->__nents = nents;
407 piter->sg_pgoffset = pgoffset;
409 EXPORT_SYMBOL(__sg_page_iter_start);
411 static int sg_page_count(struct scatterlist *sg)
413 return PAGE_ALIGN(sg->offset + sg->length) >> PAGE_SHIFT;
416 bool __sg_page_iter_next(struct sg_page_iter *piter)
418 if (!piter->__nents || !piter->sg)
421 piter->sg_pgoffset += piter->__pg_advance;
422 piter->__pg_advance = 1;
424 while (piter->sg_pgoffset >= sg_page_count(piter->sg)) {
425 piter->sg_pgoffset -= sg_page_count(piter->sg);
426 piter->sg = sg_next(piter->sg);
427 if (!--piter->__nents || !piter->sg)
433 EXPORT_SYMBOL(__sg_page_iter_next);
436 * sg_miter_start - start mapping iteration over a sg list
437 * @miter: sg mapping iter to be started
438 * @sgl: sg list to iterate over
439 * @nents: number of sg entries
442 * Starts mapping iterator @miter.
447 void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
448 unsigned int nents, unsigned int flags)
450 memset(miter, 0, sizeof(struct sg_mapping_iter));
452 __sg_page_iter_start(&miter->piter, sgl, nents, 0);
453 WARN_ON(!(flags & (SG_MITER_TO_SG | SG_MITER_FROM_SG)));
454 miter->__flags = flags;
456 EXPORT_SYMBOL(sg_miter_start);
458 static bool sg_miter_get_next_page(struct sg_mapping_iter *miter)
460 if (!miter->__remaining) {
461 struct scatterlist *sg;
462 unsigned long pgoffset;
464 if (!__sg_page_iter_next(&miter->piter))
467 sg = miter->piter.sg;
468 pgoffset = miter->piter.sg_pgoffset;
470 miter->__offset = pgoffset ? 0 : sg->offset;
471 miter->__remaining = sg->offset + sg->length -
472 (pgoffset << PAGE_SHIFT) - miter->__offset;
473 miter->__remaining = min_t(unsigned long, miter->__remaining,
474 PAGE_SIZE - miter->__offset);
481 * sg_miter_skip - reposition mapping iterator
482 * @miter: sg mapping iter to be skipped
483 * @offset: number of bytes to plus the current location
486 * Sets the offset of @miter to its current location plus @offset bytes.
487 * If mapping iterator @miter has been proceeded by sg_miter_next(), this
491 * Don't care if @miter is stopped, or not proceeded yet.
492 * Otherwise, preemption disabled if the SG_MITER_ATOMIC is set.
495 * true if @miter contains the valid mapping. false if end of sg
498 bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset)
500 sg_miter_stop(miter);
505 if (!sg_miter_get_next_page(miter))
508 consumed = min_t(off_t, offset, miter->__remaining);
509 miter->__offset += consumed;
510 miter->__remaining -= consumed;
516 EXPORT_SYMBOL(sg_miter_skip);
519 * sg_miter_next - proceed mapping iterator to the next mapping
520 * @miter: sg mapping iter to proceed
523 * Proceeds @miter to the next mapping. @miter should have been started
524 * using sg_miter_start(). On successful return, @miter->page,
525 * @miter->addr and @miter->length point to the current mapping.
528 * Preemption disabled if SG_MITER_ATOMIC. Preemption must stay disabled
529 * till @miter is stopped. May sleep if !SG_MITER_ATOMIC.
532 * true if @miter contains the next mapping. false if end of sg
535 bool sg_miter_next(struct sg_mapping_iter *miter)
537 sg_miter_stop(miter);
540 * Get to the next page if necessary.
541 * __remaining, __offset is adjusted by sg_miter_stop
543 if (!sg_miter_get_next_page(miter))
546 miter->page = sg_page_iter_page(&miter->piter);
547 miter->consumed = miter->length = miter->__remaining;
549 if (miter->__flags & SG_MITER_ATOMIC)
550 miter->addr = kmap_atomic(miter->page) + miter->__offset;
552 miter->addr = kmap(miter->page) + miter->__offset;
556 EXPORT_SYMBOL(sg_miter_next);
559 * sg_miter_stop - stop mapping iteration
560 * @miter: sg mapping iter to be stopped
563 * Stops mapping iterator @miter. @miter should have been started
564 * started using sg_miter_start(). A stopped iteration can be
565 * resumed by calling sg_miter_next() on it. This is useful when
566 * resources (kmap) need to be released during iteration.
569 * Preemption disabled if the SG_MITER_ATOMIC is set. Don't care
572 void sg_miter_stop(struct sg_mapping_iter *miter)
574 WARN_ON(miter->consumed > miter->length);
576 /* drop resources from the last iteration */
578 miter->__offset += miter->consumed;
579 miter->__remaining -= miter->consumed;
581 if ((miter->__flags & SG_MITER_TO_SG) &&
582 !PageSlab(miter->page))
583 flush_kernel_dcache_page(miter->page);
585 if (miter->__flags & SG_MITER_ATOMIC) {
586 WARN_ON_ONCE(preemptible());
587 kunmap_atomic(miter->addr);
597 EXPORT_SYMBOL(sg_miter_stop);
600 * sg_copy_buffer - Copy data between a linear buffer and an SG list
602 * @nents: Number of SG entries
603 * @buf: Where to copy from
604 * @buflen: The number of bytes to copy
605 * @skip: Number of bytes to skip before copying
606 * @to_buffer: transfer direction (true == from an sg list to a
607 * buffer, false == from a buffer to an sg list
609 * Returns the number of copied bytes.
612 static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
613 void *buf, size_t buflen, off_t skip,
616 unsigned int offset = 0;
617 struct sg_mapping_iter miter;
619 unsigned int sg_flags = SG_MITER_ATOMIC;
622 sg_flags |= SG_MITER_FROM_SG;
624 sg_flags |= SG_MITER_TO_SG;
626 sg_miter_start(&miter, sgl, nents, sg_flags);
628 if (!sg_miter_skip(&miter, skip))
631 local_irq_save(flags);
633 while (sg_miter_next(&miter) && offset < buflen) {
636 len = min(miter.length, buflen - offset);
639 memcpy(buf + offset, miter.addr, len);
641 memcpy(miter.addr, buf + offset, len);
646 sg_miter_stop(&miter);
648 local_irq_restore(flags);
653 * sg_copy_from_buffer - Copy from a linear buffer to an SG list
655 * @nents: Number of SG entries
656 * @buf: Where to copy from
657 * @buflen: The number of bytes to copy
659 * Returns the number of copied bytes.
662 size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
663 void *buf, size_t buflen)
665 return sg_copy_buffer(sgl, nents, buf, buflen, 0, false);
667 EXPORT_SYMBOL(sg_copy_from_buffer);
670 * sg_copy_to_buffer - Copy from an SG list to a linear buffer
672 * @nents: Number of SG entries
673 * @buf: Where to copy to
674 * @buflen: The number of bytes to copy
676 * Returns the number of copied bytes.
679 size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
680 void *buf, size_t buflen)
682 return sg_copy_buffer(sgl, nents, buf, buflen, 0, true);
684 EXPORT_SYMBOL(sg_copy_to_buffer);
687 * sg_pcopy_from_buffer - Copy from a linear buffer to an SG list
689 * @nents: Number of SG entries
690 * @buf: Where to copy from
691 * @skip: Number of bytes to skip before copying
692 * @buflen: The number of bytes to copy
694 * Returns the number of copied bytes.
697 size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
698 void *buf, size_t buflen, off_t skip)
700 return sg_copy_buffer(sgl, nents, buf, buflen, skip, false);
702 EXPORT_SYMBOL(sg_pcopy_from_buffer);
705 * sg_pcopy_to_buffer - Copy from an SG list to a linear buffer
707 * @nents: Number of SG entries
708 * @buf: Where to copy to
709 * @skip: Number of bytes to skip before copying
710 * @buflen: The number of bytes to copy
712 * Returns the number of copied bytes.
715 size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
716 void *buf, size_t buflen, off_t skip)
718 return sg_copy_buffer(sgl, nents, buf, buflen, skip, true);
720 EXPORT_SYMBOL(sg_pcopy_to_buffer);