~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/crypto/scatterwalk.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  * Cryptographic scatter and gather helpers.
  4  *
  5  * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
  6  * Copyright (c) 2002 Adam J. Richter <adam@yggdrasil.com>
  7  * Copyright (c) 2004 Jean-Luc Cooke <jlcooke@certainkey.com>
  8  * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
  9  */
 10 
 11 #ifndef _CRYPTO_SCATTERWALK_H
 12 #define _CRYPTO_SCATTERWALK_H
 13 
 14 #include <crypto/algapi.h>
 15 
 16 #include <linux/highmem.h>
 17 #include <linux/mm.h>
 18 #include <linux/scatterlist.h>
 19 
 20 static inline void scatterwalk_crypto_chain(struct scatterlist *head,
 21                                             struct scatterlist *sg, int num)
 22 {
 23         if (sg)
 24                 sg_chain(head, num, sg);
 25         else
 26                 sg_mark_end(head);
 27 }
 28 
 29 static inline unsigned int scatterwalk_pagelen(struct scatter_walk *walk)
 30 {
 31         unsigned int len = walk->sg->offset + walk->sg->length - walk->offset;
 32         unsigned int len_this_page = offset_in_page(~walk->offset) + 1;
 33         return len_this_page > len ? len : len_this_page;
 34 }
 35 
 36 static inline unsigned int scatterwalk_clamp(struct scatter_walk *walk,
 37                                              unsigned int nbytes)
 38 {
 39         unsigned int len_this_page = scatterwalk_pagelen(walk);
 40         return nbytes > len_this_page ? len_this_page : nbytes;
 41 }
 42 
 43 static inline void scatterwalk_advance(struct scatter_walk *walk,
 44                                        unsigned int nbytes)
 45 {
 46         walk->offset += nbytes;
 47 }
 48 
 49 static inline struct page *scatterwalk_page(struct scatter_walk *walk)
 50 {
 51         return sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT);
 52 }
 53 
 54 static inline void scatterwalk_unmap(void *vaddr)
 55 {
 56         kunmap_local(vaddr);
 57 }
 58 
 59 static inline void scatterwalk_start(struct scatter_walk *walk,
 60                                      struct scatterlist *sg)
 61 {
 62         walk->sg = sg;
 63         walk->offset = sg->offset;
 64 }
 65 
 66 static inline void *scatterwalk_map(struct scatter_walk *walk)
 67 {
 68         return kmap_local_page(scatterwalk_page(walk)) +
 69                offset_in_page(walk->offset);
 70 }
 71 
 72 static inline void scatterwalk_pagedone(struct scatter_walk *walk, int out,
 73                                         unsigned int more)
 74 {
 75         if (out) {
 76                 struct page *page;
 77 
 78                 page = sg_page(walk->sg) + ((walk->offset - 1) >> PAGE_SHIFT);
 79                 flush_dcache_page(page);
 80         }
 81 
 82         if (more && walk->offset >= walk->sg->offset + walk->sg->length)
 83                 scatterwalk_start(walk, sg_next(walk->sg));
 84 }
 85 
 86 static inline void scatterwalk_done(struct scatter_walk *walk, int out,
 87                                     int more)
 88 {
 89         if (!more || walk->offset >= walk->sg->offset + walk->sg->length ||
 90             !(walk->offset & (PAGE_SIZE - 1)))
 91                 scatterwalk_pagedone(walk, out, more);
 92 }
 93 
 94 void scatterwalk_copychunks(void *buf, struct scatter_walk *walk,
 95                             size_t nbytes, int out);
 96 
 97 void scatterwalk_map_and_copy(void *buf, struct scatterlist *sg,
 98                               unsigned int start, unsigned int nbytes, int out);
 99 
100 struct scatterlist *scatterwalk_ffwd(struct scatterlist dst[2],
101                                      struct scatterlist *src,
102                                      unsigned int len);
103 
104 #endif  /* _CRYPTO_SCATTERWALK_H */
105 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php