forked from mirrors/linux
		
	 61307b7be4
			
		
	
	
		61307b7be4
		
	
	
	
	
		
			
			documented (hopefully adequately) in the respective changelogs.  Notable
 series include:
 
 - Lucas Stach has provided some page-mapping
   cleanup/consolidation/maintainability work in the series "mm/treewide:
   Remove pXd_huge() API".
 
 - In the series "Allow migrate on protnone reference with
   MPOL_PREFERRED_MANY policy", Donet Tom has optimized mempolicy's
   MPOL_PREFERRED_MANY mode, yielding almost doubled performance in one
   test.
 
 - In their series "Memory allocation profiling" Kent Overstreet and
   Suren Baghdasaryan have contributed a means of determining (via
   /proc/allocinfo) whereabouts in the kernel memory is being allocated:
   number of calls and amount of memory.
 
 - Matthew Wilcox has provided the series "Various significant MM
   patches" which does a number of rather unrelated things, but in largely
   similar code sites.
 
 - In his series "mm: page_alloc: freelist migratetype hygiene" Johannes
   Weiner has fixed the page allocator's handling of migratetype requests,
   with resulting improvements in compaction efficiency.
 
 - In the series "make the hugetlb migration strategy consistent" Baolin
   Wang has fixed a hugetlb migration issue, which should improve hugetlb
   allocation reliability.
 
 - Liu Shixin has hit an I/O meltdown caused by readahead in a
   memory-tight memcg.  Addressed in the series "Fix I/O high when memory
   almost met memcg limit".
 
 - In the series "mm/filemap: optimize folio adding and splitting" Kairui
   Song has optimized pagecache insertion, yielding ~10% performance
   improvement in one test.
 
 - Baoquan He has cleaned up and consolidated the early zone
   initialization code in the series "mm/mm_init.c: refactor
   free_area_init_core()".
 
 - Baoquan has also redone some MM initializatio code in the series
   "mm/init: minor clean up and improvement".
 
 - MM helper cleanups from Christoph Hellwig in his series "remove
   follow_pfn".
 
 - More cleanups from Matthew Wilcox in the series "Various page->flags
   cleanups".
 
 - Vlastimil Babka has contributed maintainability improvements in the
   series "memcg_kmem hooks refactoring".
 
 - More folio conversions and cleanups in Matthew Wilcox's series
 
 	"Convert huge_zero_page to huge_zero_folio"
 	"khugepaged folio conversions"
 	"Remove page_idle and page_young wrappers"
 	"Use folio APIs in procfs"
 	"Clean up __folio_put()"
 	"Some cleanups for memory-failure"
 	"Remove page_mapping()"
 	"More folio compat code removal"
 
 - David Hildenbrand chipped in with "fs/proc/task_mmu: convert hugetlb
   functions to work on folis".
 
 - Code consolidation and cleanup work related to GUP's handling of
   hugetlbs in Peter Xu's series "mm/gup: Unify hugetlb, part 2".
 
 - Rick Edgecombe has developed some fixes to stack guard gaps in the
   series "Cover a guard gap corner case".
 
 - Jinjiang Tu has fixed KSM's behaviour after a fork+exec in the series
   "mm/ksm: fix ksm exec support for prctl".
 
 - Baolin Wang has implemented NUMA balancing for multi-size THPs.  This
   is a simple first-cut implementation for now.  The series is "support
   multi-size THP numa balancing".
 
 - Cleanups to vma handling helper functions from Matthew Wilcox in the
   series "Unify vma_address and vma_pgoff_address".
 
 - Some selftests maintenance work from Dev Jain in the series
   "selftests/mm: mremap_test: Optimizations and style fixes".
 
 - Improvements to the swapping of multi-size THPs from Ryan Roberts in
   the series "Swap-out mTHP without splitting".
 
 - Kefeng Wang has significantly optimized the handling of arm64's
   permission page faults in the series
 
 	"arch/mm/fault: accelerate pagefault when badaccess"
 	"mm: remove arch's private VM_FAULT_BADMAP/BADACCESS"
 
 - GUP cleanups from David Hildenbrand in "mm/gup: consistently call it
   GUP-fast".
 
 - hugetlb fault code cleanups from Vishal Moola in "Hugetlb fault path to
   use struct vm_fault".
 
 - selftests build fixes from John Hubbard in the series "Fix
   selftests/mm build without requiring "make headers"".
 
 - Memory tiering fixes/improvements from Ho-Ren (Jack) Chuang in the
   series "Improved Memory Tier Creation for CPUless NUMA Nodes".  Fixes
   the initialization code so that migration between different memory types
   works as intended.
 
 - David Hildenbrand has improved follow_pte() and fixed an errant driver
   in the series "mm: follow_pte() improvements and acrn follow_pte()
   fixes".
 
 - David also did some cleanup work on large folio mapcounts in his
   series "mm: mapcount for large folios + page_mapcount() cleanups".
 
 - Folio conversions in KSM in Alex Shi's series "transfer page to folio
   in KSM".
 
 - Barry Song has added some sysfs stats for monitoring multi-size THP's
   in the series "mm: add per-order mTHP alloc and swpout counters".
 
 - Some zswap cleanups from Yosry Ahmed in the series "zswap same-filled
   and limit checking cleanups".
 
 - Matthew Wilcox has been looking at buffer_head code and found the
   documentation to be lacking.  The series is "Improve buffer head
   documentation".
 
 - Multi-size THPs get more work, this time from Lance Yang.  His series
   "mm/madvise: enhance lazyfreeing with mTHP in madvise_free" optimizes
   the freeing of these things.
 
 - Kemeng Shi has added more userspace-visible writeback instrumentation
   in the series "Improve visibility of writeback".
 
 - Kemeng Shi then sent some maintenance work on top in the series "Fix
   and cleanups to page-writeback".
 
 - Matthew Wilcox reduces mmap_lock traffic in the anon vma code in the
   series "Improve anon_vma scalability for anon VMAs".  Intel's test bot
   reported an improbable 3x improvement in one test.
 
 - SeongJae Park adds some DAMON feature work in the series
 
 	"mm/damon: add a DAMOS filter type for page granularity access recheck"
 	"selftests/damon: add DAMOS quota goal test"
 
 - Also some maintenance work in the series
 
 	"mm/damon/paddr: simplify page level access re-check for pageout"
 	"mm/damon: misc fixes and improvements"
 
 - David Hildenbrand has disabled some known-to-fail selftests ni the
   series "selftests: mm: cow: flag vmsplice() hugetlb tests as XFAIL".
 
 - memcg metadata storage optimizations from Shakeel Butt in "memcg:
   reduce memory consumption by memcg stats".
 
 - DAX fixes and maintenance work from Vishal Verma in the series
   "dax/bus.c: Fixups for dax-bus locking".
 -----BEGIN PGP SIGNATURE-----
 
 iHUEABYIAB0WIQTTMBEPP41GrTpTJgfdBJ7gKXxAjgUCZkgQYwAKCRDdBJ7gKXxA
 jrdKAP9WVJdpEcXxpoub/vVE0UWGtffr8foifi9bCwrQrGh5mgEAx7Yf0+d/oBZB
 nvA4E0DcPrUAFy144FNM0NTCb7u9vAw=
 =V3R/
 -----END PGP SIGNATURE-----
Merge tag 'mm-stable-2024-05-17-19-19' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Pull mm updates from Andrew Morton:
 "The usual shower of singleton fixes and minor series all over MM,
  documented (hopefully adequately) in the respective changelogs.
  Notable series include:
   - Lucas Stach has provided some page-mapping cleanup/consolidation/
     maintainability work in the series "mm/treewide: Remove pXd_huge()
     API".
   - In the series "Allow migrate on protnone reference with
     MPOL_PREFERRED_MANY policy", Donet Tom has optimized mempolicy's
     MPOL_PREFERRED_MANY mode, yielding almost doubled performance in
     one test.
   - In their series "Memory allocation profiling" Kent Overstreet and
     Suren Baghdasaryan have contributed a means of determining (via
     /proc/allocinfo) whereabouts in the kernel memory is being
     allocated: number of calls and amount of memory.
   - Matthew Wilcox has provided the series "Various significant MM
     patches" which does a number of rather unrelated things, but in
     largely similar code sites.
   - In his series "mm: page_alloc: freelist migratetype hygiene"
     Johannes Weiner has fixed the page allocator's handling of
     migratetype requests, with resulting improvements in compaction
     efficiency.
   - In the series "make the hugetlb migration strategy consistent"
     Baolin Wang has fixed a hugetlb migration issue, which should
     improve hugetlb allocation reliability.
   - Liu Shixin has hit an I/O meltdown caused by readahead in a
     memory-tight memcg. Addressed in the series "Fix I/O high when
     memory almost met memcg limit".
   - In the series "mm/filemap: optimize folio adding and splitting"
     Kairui Song has optimized pagecache insertion, yielding ~10%
     performance improvement in one test.
   - Baoquan He has cleaned up and consolidated the early zone
     initialization code in the series "mm/mm_init.c: refactor
     free_area_init_core()".
   - Baoquan has also redone some MM initializatio code in the series
     "mm/init: minor clean up and improvement".
   - MM helper cleanups from Christoph Hellwig in his series "remove
     follow_pfn".
   - More cleanups from Matthew Wilcox in the series "Various
     page->flags cleanups".
   - Vlastimil Babka has contributed maintainability improvements in the
     series "memcg_kmem hooks refactoring".
   - More folio conversions and cleanups in Matthew Wilcox's series:
	"Convert huge_zero_page to huge_zero_folio"
	"khugepaged folio conversions"
	"Remove page_idle and page_young wrappers"
	"Use folio APIs in procfs"
	"Clean up __folio_put()"
	"Some cleanups for memory-failure"
	"Remove page_mapping()"
	"More folio compat code removal"
   - David Hildenbrand chipped in with "fs/proc/task_mmu: convert
     hugetlb functions to work on folis".
   - Code consolidation and cleanup work related to GUP's handling of
     hugetlbs in Peter Xu's series "mm/gup: Unify hugetlb, part 2".
   - Rick Edgecombe has developed some fixes to stack guard gaps in the
     series "Cover a guard gap corner case".
   - Jinjiang Tu has fixed KSM's behaviour after a fork+exec in the
     series "mm/ksm: fix ksm exec support for prctl".
   - Baolin Wang has implemented NUMA balancing for multi-size THPs.
     This is a simple first-cut implementation for now. The series is
     "support multi-size THP numa balancing".
   - Cleanups to vma handling helper functions from Matthew Wilcox in
     the series "Unify vma_address and vma_pgoff_address".
   - Some selftests maintenance work from Dev Jain in the series
     "selftests/mm: mremap_test: Optimizations and style fixes".
   - Improvements to the swapping of multi-size THPs from Ryan Roberts
     in the series "Swap-out mTHP without splitting".
   - Kefeng Wang has significantly optimized the handling of arm64's
     permission page faults in the series
	"arch/mm/fault: accelerate pagefault when badaccess"
	"mm: remove arch's private VM_FAULT_BADMAP/BADACCESS"
   - GUP cleanups from David Hildenbrand in "mm/gup: consistently call
     it GUP-fast".
   - hugetlb fault code cleanups from Vishal Moola in "Hugetlb fault
     path to use struct vm_fault".
   - selftests build fixes from John Hubbard in the series "Fix
     selftests/mm build without requiring "make headers"".
   - Memory tiering fixes/improvements from Ho-Ren (Jack) Chuang in the
     series "Improved Memory Tier Creation for CPUless NUMA Nodes".
     Fixes the initialization code so that migration between different
     memory types works as intended.
   - David Hildenbrand has improved follow_pte() and fixed an errant
     driver in the series "mm: follow_pte() improvements and acrn
     follow_pte() fixes".
   - David also did some cleanup work on large folio mapcounts in his
     series "mm: mapcount for large folios + page_mapcount() cleanups".
   - Folio conversions in KSM in Alex Shi's series "transfer page to
     folio in KSM".
   - Barry Song has added some sysfs stats for monitoring multi-size
     THP's in the series "mm: add per-order mTHP alloc and swpout
     counters".
   - Some zswap cleanups from Yosry Ahmed in the series "zswap
     same-filled and limit checking cleanups".
   - Matthew Wilcox has been looking at buffer_head code and found the
     documentation to be lacking. The series is "Improve buffer head
     documentation".
   - Multi-size THPs get more work, this time from Lance Yang. His
     series "mm/madvise: enhance lazyfreeing with mTHP in madvise_free"
     optimizes the freeing of these things.
   - Kemeng Shi has added more userspace-visible writeback
     instrumentation in the series "Improve visibility of writeback".
   - Kemeng Shi then sent some maintenance work on top in the series
     "Fix and cleanups to page-writeback".
   - Matthew Wilcox reduces mmap_lock traffic in the anon vma code in
     the series "Improve anon_vma scalability for anon VMAs". Intel's
     test bot reported an improbable 3x improvement in one test.
   - SeongJae Park adds some DAMON feature work in the series
	"mm/damon: add a DAMOS filter type for page granularity access recheck"
	"selftests/damon: add DAMOS quota goal test"
   - Also some maintenance work in the series
	"mm/damon/paddr: simplify page level access re-check for pageout"
	"mm/damon: misc fixes and improvements"
   - David Hildenbrand has disabled some known-to-fail selftests ni the
     series "selftests: mm: cow: flag vmsplice() hugetlb tests as
     XFAIL".
   - memcg metadata storage optimizations from Shakeel Butt in "memcg:
     reduce memory consumption by memcg stats".
   - DAX fixes and maintenance work from Vishal Verma in the series
     "dax/bus.c: Fixups for dax-bus locking""
* tag 'mm-stable-2024-05-17-19-19' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (426 commits)
  memcg, oom: cleanup unused memcg_oom_gfp_mask and memcg_oom_order
  selftests/mm: hugetlb_madv_vs_map: avoid test skipping by querying hugepage size at runtime
  mm/hugetlb: add missing VM_FAULT_SET_HINDEX in hugetlb_wp
  mm/hugetlb: add missing VM_FAULT_SET_HINDEX in hugetlb_fault
  selftests: cgroup: add tests to verify the zswap writeback path
  mm: memcg: make alloc_mem_cgroup_per_node_info() return bool
  mm/damon/core: fix return value from damos_wmark_metric_value
  mm: do not update memcg stats for NR_{FILE/SHMEM}_PMDMAPPED
  selftests: cgroup: remove redundant enabling of memory controller
  Docs/mm/damon/maintainer-profile: allow posting patches based on damon/next tree
  Docs/mm/damon/maintainer-profile: change the maintainer's timezone from PST to PT
  Docs/mm/damon/design: use a list for supported filters
  Docs/admin-guide/mm/damon/usage: fix wrong schemes effective quota update command
  Docs/admin-guide/mm/damon/usage: fix wrong example of DAMOS filter matching sysfs file
  selftests/damon: classify tests for functionalities and regressions
  selftests/damon/_damon_sysfs: use 'is' instead of '==' for 'None'
  selftests/damon/_damon_sysfs: find sysfs mount point from /proc/mounts
  selftests/damon/_damon_sysfs: check errors from nr_schemes file reads
  mm/damon/core: initialize ->esz_bp from damos_quota_init_priv()
  selftests/damon: add a test for DAMOS quota goal
  ...
		
	
			
		
			
				
	
	
		
			933 lines
		
	
	
	
		
			32 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			933 lines
		
	
	
	
		
			32 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-or-later */
 | |
| /*
 | |
|  * Symmetric key ciphers.
 | |
|  * 
 | |
|  * Copyright (c) 2007-2015 Herbert Xu <herbert@gondor.apana.org.au>
 | |
|  */
 | |
| 
 | |
| #ifndef _CRYPTO_SKCIPHER_H
 | |
| #define _CRYPTO_SKCIPHER_H
 | |
| 
 | |
| #include <linux/atomic.h>
 | |
| #include <linux/container_of.h>
 | |
| #include <linux/crypto.h>
 | |
| #include <linux/slab.h>
 | |
| #include <linux/string.h>
 | |
| #include <linux/types.h>
 | |
| 
 | |
| /* Set this bit if the lskcipher operation is a continuation. */
 | |
| #define CRYPTO_LSKCIPHER_FLAG_CONT	0x00000001
 | |
| /* Set this bit if the lskcipher operation is final. */
 | |
| #define CRYPTO_LSKCIPHER_FLAG_FINAL	0x00000002
 | |
| /* The bit CRYPTO_TFM_REQ_MAY_SLEEP can also be set if needed. */
 | |
| 
 | |
| /* Set this bit if the skcipher operation is a continuation. */
 | |
| #define CRYPTO_SKCIPHER_REQ_CONT	0x00000001
 | |
| /* Set this bit if the skcipher operation is not final. */
 | |
| #define CRYPTO_SKCIPHER_REQ_NOTFINAL	0x00000002
 | |
| 
 | |
| struct scatterlist;
 | |
| 
 | |
| /**
 | |
|  *	struct skcipher_request - Symmetric key cipher request
 | |
|  *	@cryptlen: Number of bytes to encrypt or decrypt
 | |
|  *	@iv: Initialisation Vector
 | |
|  *	@src: Source SG list
 | |
|  *	@dst: Destination SG list
 | |
|  *	@base: Underlying async request
 | |
|  *	@__ctx: Start of private context data
 | |
|  */
 | |
| struct skcipher_request {
 | |
| 	unsigned int cryptlen;
 | |
| 
 | |
| 	u8 *iv;
 | |
| 
 | |
| 	struct scatterlist *src;
 | |
| 	struct scatterlist *dst;
 | |
| 
 | |
| 	struct crypto_async_request base;
 | |
| 
 | |
| 	void *__ctx[] CRYPTO_MINALIGN_ATTR;
 | |
| };
 | |
| 
 | |
| struct crypto_skcipher {
 | |
| 	unsigned int reqsize;
 | |
| 
 | |
| 	struct crypto_tfm base;
 | |
| };
 | |
| 
 | |
| struct crypto_sync_skcipher {
 | |
| 	struct crypto_skcipher base;
 | |
| };
 | |
| 
 | |
| struct crypto_lskcipher {
 | |
| 	struct crypto_tfm base;
 | |
| };
 | |
| 
 | |
| /*
 | |
|  * struct skcipher_alg_common - common properties of skcipher_alg
 | |
|  * @min_keysize: Minimum key size supported by the transformation. This is the
 | |
|  *		 smallest key length supported by this transformation algorithm.
 | |
|  *		 This must be set to one of the pre-defined values as this is
 | |
|  *		 not hardware specific. Possible values for this field can be
 | |
|  *		 found via git grep "_MIN_KEY_SIZE" include/crypto/
 | |
|  * @max_keysize: Maximum key size supported by the transformation. This is the
 | |
|  *		 largest key length supported by this transformation algorithm.
 | |
|  *		 This must be set to one of the pre-defined values as this is
 | |
|  *		 not hardware specific. Possible values for this field can be
 | |
|  *		 found via git grep "_MAX_KEY_SIZE" include/crypto/
 | |
|  * @ivsize: IV size applicable for transformation. The consumer must provide an
 | |
|  *	    IV of exactly that size to perform the encrypt or decrypt operation.
 | |
|  * @chunksize: Equal to the block size except for stream ciphers such as
 | |
|  *	       CTR where it is set to the underlying block size.
 | |
|  * @statesize: Size of the internal state for the algorithm.
 | |
|  * @base: Definition of a generic crypto algorithm.
 | |
|  */
 | |
| #define SKCIPHER_ALG_COMMON {		\
 | |
| 	unsigned int min_keysize;	\
 | |
| 	unsigned int max_keysize;	\
 | |
| 	unsigned int ivsize;		\
 | |
| 	unsigned int chunksize;		\
 | |
| 	unsigned int statesize;		\
 | |
| 					\
 | |
| 	struct crypto_alg base;		\
 | |
| }
 | |
| struct skcipher_alg_common SKCIPHER_ALG_COMMON;
 | |
| 
 | |
| /**
 | |
|  * struct skcipher_alg - symmetric key cipher definition
 | |
|  * @setkey: Set key for the transformation. This function is used to either
 | |
|  *	    program a supplied key into the hardware or store the key in the
 | |
|  *	    transformation context for programming it later. Note that this
 | |
|  *	    function does modify the transformation context. This function can
 | |
|  *	    be called multiple times during the existence of the transformation
 | |
|  *	    object, so one must make sure the key is properly reprogrammed into
 | |
|  *	    the hardware. This function is also responsible for checking the key
 | |
|  *	    length for validity. In case a software fallback was put in place in
 | |
|  *	    the @cra_init call, this function might need to use the fallback if
 | |
|  *	    the algorithm doesn't support all of the key sizes.
 | |
|  * @encrypt: Encrypt a scatterlist of blocks. This function is used to encrypt
 | |
|  *	     the supplied scatterlist containing the blocks of data. The crypto
 | |
|  *	     API consumer is responsible for aligning the entries of the
 | |
|  *	     scatterlist properly and making sure the chunks are correctly
 | |
|  *	     sized. In case a software fallback was put in place in the
 | |
|  *	     @cra_init call, this function might need to use the fallback if
 | |
|  *	     the algorithm doesn't support all of the key sizes. In case the
 | |
|  *	     key was stored in transformation context, the key might need to be
 | |
|  *	     re-programmed into the hardware in this function. This function
 | |
|  *	     shall not modify the transformation context, as this function may
 | |
|  *	     be called in parallel with the same transformation object.
 | |
|  * @decrypt: Decrypt a single block. This is a reverse counterpart to @encrypt
 | |
|  *	     and the conditions are exactly the same.
 | |
|  * @export: Export partial state of the transformation. This function dumps the
 | |
|  *	    entire state of the ongoing transformation into a provided block of
 | |
|  *	    data so it can be @import 'ed back later on. This is useful in case
 | |
|  *	    you want to save partial result of the transformation after
 | |
|  *	    processing certain amount of data and reload this partial result
 | |
|  *	    multiple times later on for multiple re-use. No data processing
 | |
|  *	    happens at this point.
 | |
|  * @import: Import partial state of the transformation. This function loads the
 | |
|  *	    entire state of the ongoing transformation from a provided block of
 | |
|  *	    data so the transformation can continue from this point onward. No
 | |
|  *	    data processing happens at this point.
 | |
|  * @init: Initialize the cryptographic transformation object. This function
 | |
|  *	  is used to initialize the cryptographic transformation object.
 | |
|  *	  This function is called only once at the instantiation time, right
 | |
|  *	  after the transformation context was allocated. In case the
 | |
|  *	  cryptographic hardware has some special requirements which need to
 | |
|  *	  be handled by software, this function shall check for the precise
 | |
|  *	  requirement of the transformation and put any software fallbacks
 | |
|  *	  in place.
 | |
|  * @exit: Deinitialize the cryptographic transformation object. This is a
 | |
|  *	  counterpart to @init, used to remove various changes set in
 | |
|  *	  @init.
 | |
|  * @walksize: Equal to the chunk size except in cases where the algorithm is
 | |
|  * 	      considerably more efficient if it can operate on multiple chunks
 | |
|  * 	      in parallel. Should be a multiple of chunksize.
 | |
|  * @co: see struct skcipher_alg_common
 | |
|  *
 | |
|  * All fields except @ivsize are mandatory and must be filled.
 | |
|  */
 | |
| struct skcipher_alg {
 | |
| 	int (*setkey)(struct crypto_skcipher *tfm, const u8 *key,
 | |
| 	              unsigned int keylen);
 | |
| 	int (*encrypt)(struct skcipher_request *req);
 | |
| 	int (*decrypt)(struct skcipher_request *req);
 | |
| 	int (*export)(struct skcipher_request *req, void *out);
 | |
| 	int (*import)(struct skcipher_request *req, const void *in);
 | |
| 	int (*init)(struct crypto_skcipher *tfm);
 | |
| 	void (*exit)(struct crypto_skcipher *tfm);
 | |
| 
 | |
| 	unsigned int walksize;
 | |
| 
 | |
| 	union {
 | |
| 		struct SKCIPHER_ALG_COMMON;
 | |
| 		struct skcipher_alg_common co;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| /**
 | |
|  * struct lskcipher_alg - linear symmetric key cipher definition
 | |
|  * @setkey: Set key for the transformation. This function is used to either
 | |
|  *	    program a supplied key into the hardware or store the key in the
 | |
|  *	    transformation context for programming it later. Note that this
 | |
|  *	    function does modify the transformation context. This function can
 | |
|  *	    be called multiple times during the existence of the transformation
 | |
|  *	    object, so one must make sure the key is properly reprogrammed into
 | |
|  *	    the hardware. This function is also responsible for checking the key
 | |
|  *	    length for validity. In case a software fallback was put in place in
 | |
|  *	    the @cra_init call, this function might need to use the fallback if
 | |
|  *	    the algorithm doesn't support all of the key sizes.
 | |
|  * @encrypt: Encrypt a number of bytes. This function is used to encrypt
 | |
|  *	     the supplied data.  This function shall not modify
 | |
|  *	     the transformation context, as this function may be called
 | |
|  *	     in parallel with the same transformation object.  Data
 | |
|  *	     may be left over if length is not a multiple of blocks
 | |
|  *	     and there is more to come (final == false).  The number of
 | |
|  *	     left-over bytes should be returned in case of success.
 | |
|  *	     The siv field shall be as long as ivsize + statesize with
 | |
|  *	     the IV placed at the front.  The state will be used by the
 | |
|  *	     algorithm internally.
 | |
|  * @decrypt: Decrypt a number of bytes. This is a reverse counterpart to
 | |
|  *	     @encrypt and the conditions are exactly the same.
 | |
|  * @init: Initialize the cryptographic transformation object. This function
 | |
|  *	  is used to initialize the cryptographic transformation object.
 | |
|  *	  This function is called only once at the instantiation time, right
 | |
|  *	  after the transformation context was allocated.
 | |
|  * @exit: Deinitialize the cryptographic transformation object. This is a
 | |
|  *	  counterpart to @init, used to remove various changes set in
 | |
|  *	  @init.
 | |
|  * @co: see struct skcipher_alg_common
 | |
|  */
 | |
| struct lskcipher_alg {
 | |
| 	int (*setkey)(struct crypto_lskcipher *tfm, const u8 *key,
 | |
| 	              unsigned int keylen);
 | |
| 	int (*encrypt)(struct crypto_lskcipher *tfm, const u8 *src,
 | |
| 		       u8 *dst, unsigned len, u8 *siv, u32 flags);
 | |
| 	int (*decrypt)(struct crypto_lskcipher *tfm, const u8 *src,
 | |
| 		       u8 *dst, unsigned len, u8 *siv, u32 flags);
 | |
| 	int (*init)(struct crypto_lskcipher *tfm);
 | |
| 	void (*exit)(struct crypto_lskcipher *tfm);
 | |
| 
 | |
| 	struct skcipher_alg_common co;
 | |
| };
 | |
| 
 | |
| #define MAX_SYNC_SKCIPHER_REQSIZE      384
 | |
| /*
 | |
|  * This performs a type-check against the "tfm" argument to make sure
 | |
|  * all users have the correct skcipher tfm for doing on-stack requests.
 | |
|  */
 | |
| #define SYNC_SKCIPHER_REQUEST_ON_STACK(name, tfm) \
 | |
| 	char __##name##_desc[sizeof(struct skcipher_request) + \
 | |
| 			     MAX_SYNC_SKCIPHER_REQSIZE + \
 | |
| 			     (!(sizeof((struct crypto_sync_skcipher *)1 == \
 | |
| 				       (typeof(tfm))1))) \
 | |
| 			    ] CRYPTO_MINALIGN_ATTR; \
 | |
| 	struct skcipher_request *name = (void *)__##name##_desc
 | |
| 
 | |
| /**
 | |
|  * DOC: Symmetric Key Cipher API
 | |
|  *
 | |
|  * Symmetric key cipher API is used with the ciphers of type
 | |
|  * CRYPTO_ALG_TYPE_SKCIPHER (listed as type "skcipher" in /proc/crypto).
 | |
|  *
 | |
|  * Asynchronous cipher operations imply that the function invocation for a
 | |
|  * cipher request returns immediately before the completion of the operation.
 | |
|  * The cipher request is scheduled as a separate kernel thread and therefore
 | |
|  * load-balanced on the different CPUs via the process scheduler. To allow
 | |
|  * the kernel crypto API to inform the caller about the completion of a cipher
 | |
|  * request, the caller must provide a callback function. That function is
 | |
|  * invoked with the cipher handle when the request completes.
 | |
|  *
 | |
|  * To support the asynchronous operation, additional information than just the
 | |
|  * cipher handle must be supplied to the kernel crypto API. That additional
 | |
|  * information is given by filling in the skcipher_request data structure.
 | |
|  *
 | |
|  * For the symmetric key cipher API, the state is maintained with the tfm
 | |
|  * cipher handle. A single tfm can be used across multiple calls and in
 | |
|  * parallel. For asynchronous block cipher calls, context data supplied and
 | |
|  * only used by the caller can be referenced the request data structure in
 | |
|  * addition to the IV used for the cipher request. The maintenance of such
 | |
|  * state information would be important for a crypto driver implementer to
 | |
|  * have, because when calling the callback function upon completion of the
 | |
|  * cipher operation, that callback function may need some information about
 | |
|  * which operation just finished if it invoked multiple in parallel. This
 | |
|  * state information is unused by the kernel crypto API.
 | |
|  */
 | |
| 
 | |
| static inline struct crypto_skcipher *__crypto_skcipher_cast(
 | |
| 	struct crypto_tfm *tfm)
 | |
| {
 | |
| 	return container_of(tfm, struct crypto_skcipher, base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_alloc_skcipher() - allocate symmetric key cipher handle
 | |
|  * @alg_name: is the cra_name / name or cra_driver_name / driver name of the
 | |
|  *	      skcipher cipher
 | |
|  * @type: specifies the type of the cipher
 | |
|  * @mask: specifies the mask for the cipher
 | |
|  *
 | |
|  * Allocate a cipher handle for an skcipher. The returned struct
 | |
|  * crypto_skcipher is the cipher handle that is required for any subsequent
 | |
|  * API invocation for that skcipher.
 | |
|  *
 | |
|  * Return: allocated cipher handle in case of success; IS_ERR() is true in case
 | |
|  *	   of an error, PTR_ERR() returns the error code.
 | |
|  */
 | |
| struct crypto_skcipher *crypto_alloc_skcipher(const char *alg_name,
 | |
| 					      u32 type, u32 mask);
 | |
| 
 | |
| struct crypto_sync_skcipher *crypto_alloc_sync_skcipher(const char *alg_name,
 | |
| 					      u32 type, u32 mask);
 | |
| 
 | |
| 
 | |
| /**
 | |
|  * crypto_alloc_lskcipher() - allocate linear symmetric key cipher handle
 | |
|  * @alg_name: is the cra_name / name or cra_driver_name / driver name of the
 | |
|  *	      lskcipher
 | |
|  * @type: specifies the type of the cipher
 | |
|  * @mask: specifies the mask for the cipher
 | |
|  *
 | |
|  * Allocate a cipher handle for an lskcipher. The returned struct
 | |
|  * crypto_lskcipher is the cipher handle that is required for any subsequent
 | |
|  * API invocation for that lskcipher.
 | |
|  *
 | |
|  * Return: allocated cipher handle in case of success; IS_ERR() is true in case
 | |
|  *	   of an error, PTR_ERR() returns the error code.
 | |
|  */
 | |
| struct crypto_lskcipher *crypto_alloc_lskcipher(const char *alg_name,
 | |
| 						u32 type, u32 mask);
 | |
| 
 | |
| static inline struct crypto_tfm *crypto_skcipher_tfm(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return &tfm->base;
 | |
| }
 | |
| 
 | |
| static inline struct crypto_tfm *crypto_lskcipher_tfm(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return &tfm->base;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_free_skcipher() - zeroize and free cipher handle
 | |
|  * @tfm: cipher handle to be freed
 | |
|  *
 | |
|  * If @tfm is a NULL or error pointer, this function does nothing.
 | |
|  */
 | |
| static inline void crypto_free_skcipher(struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	crypto_destroy_tfm(tfm, crypto_skcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline void crypto_free_sync_skcipher(struct crypto_sync_skcipher *tfm)
 | |
| {
 | |
| 	crypto_free_skcipher(&tfm->base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_free_lskcipher() - zeroize and free cipher handle
 | |
|  * @tfm: cipher handle to be freed
 | |
|  *
 | |
|  * If @tfm is a NULL or error pointer, this function does nothing.
 | |
|  */
 | |
| static inline void crypto_free_lskcipher(struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	crypto_destroy_tfm(tfm, crypto_lskcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_has_skcipher() - Search for the availability of an skcipher.
 | |
|  * @alg_name: is the cra_name / name or cra_driver_name / driver name of the
 | |
|  *	      skcipher
 | |
|  * @type: specifies the type of the skcipher
 | |
|  * @mask: specifies the mask for the skcipher
 | |
|  *
 | |
|  * Return: true when the skcipher is known to the kernel crypto API; false
 | |
|  *	   otherwise
 | |
|  */
 | |
| int crypto_has_skcipher(const char *alg_name, u32 type, u32 mask);
 | |
| 
 | |
| static inline const char *crypto_skcipher_driver_name(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline const char *crypto_lskcipher_driver_name(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_driver_name(crypto_lskcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline struct skcipher_alg_common *crypto_skcipher_alg_common(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return container_of(crypto_skcipher_tfm(tfm)->__crt_alg,
 | |
| 			    struct skcipher_alg_common, base);
 | |
| }
 | |
| 
 | |
| static inline struct skcipher_alg *crypto_skcipher_alg(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return container_of(crypto_skcipher_tfm(tfm)->__crt_alg,
 | |
| 			    struct skcipher_alg, base);
 | |
| }
 | |
| 
 | |
| static inline struct lskcipher_alg *crypto_lskcipher_alg(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return container_of(crypto_lskcipher_tfm(tfm)->__crt_alg,
 | |
| 			    struct lskcipher_alg, co.base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_ivsize() - obtain IV size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The size of the IV for the skcipher referenced by the cipher handle is
 | |
|  * returned. This IV size may be zero if the cipher does not need an IV.
 | |
|  *
 | |
|  * Return: IV size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_skcipher_ivsize(struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_alg_common(tfm)->ivsize;
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_sync_skcipher_ivsize(
 | |
| 	struct crypto_sync_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_ivsize(&tfm->base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_ivsize() - obtain IV size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The size of the IV for the lskcipher referenced by the cipher handle is
 | |
|  * returned. This IV size may be zero if the cipher does not need an IV.
 | |
|  *
 | |
|  * Return: IV size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_lskcipher_ivsize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_lskcipher_alg(tfm)->co.ivsize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_blocksize() - obtain block size of cipher
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The block size for the skcipher referenced with the cipher handle is
 | |
|  * returned. The caller may use that information to allocate appropriate
 | |
|  * memory for the data returned by the encryption or decryption operation
 | |
|  *
 | |
|  * Return: block size of cipher
 | |
|  */
 | |
| static inline unsigned int crypto_skcipher_blocksize(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_blocksize(crypto_skcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_blocksize() - obtain block size of cipher
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The block size for the lskcipher referenced with the cipher handle is
 | |
|  * returned. The caller may use that information to allocate appropriate
 | |
|  * memory for the data returned by the encryption or decryption operation
 | |
|  *
 | |
|  * Return: block size of cipher
 | |
|  */
 | |
| static inline unsigned int crypto_lskcipher_blocksize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_blocksize(crypto_lskcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_chunksize() - obtain chunk size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The block size is set to one for ciphers such as CTR.  However,
 | |
|  * you still need to provide incremental updates in multiples of
 | |
|  * the underlying block size as the IV does not have sub-block
 | |
|  * granularity.  This is known in this API as the chunk size.
 | |
|  *
 | |
|  * Return: chunk size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_skcipher_chunksize(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_alg_common(tfm)->chunksize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_chunksize() - obtain chunk size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * The block size is set to one for ciphers such as CTR.  However,
 | |
|  * you still need to provide incremental updates in multiples of
 | |
|  * the underlying block size as the IV does not have sub-block
 | |
|  * granularity.  This is known in this API as the chunk size.
 | |
|  *
 | |
|  * Return: chunk size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_lskcipher_chunksize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_lskcipher_alg(tfm)->co.chunksize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_statesize() - obtain state size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * Some algorithms cannot be chained with the IV alone.  They carry
 | |
|  * internal state which must be replicated if data is to be processed
 | |
|  * incrementally.  The size of that state can be obtained with this
 | |
|  * function.
 | |
|  *
 | |
|  * Return: state size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_skcipher_statesize(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_alg_common(tfm)->statesize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_statesize() - obtain state size
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * Some algorithms cannot be chained with the IV alone.  They carry
 | |
|  * internal state which must be replicated if data is to be processed
 | |
|  * incrementally.  The size of that state can be obtained with this
 | |
|  * function.
 | |
|  *
 | |
|  * Return: state size in bytes
 | |
|  */
 | |
| static inline unsigned int crypto_lskcipher_statesize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_lskcipher_alg(tfm)->co.statesize;
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_sync_skcipher_blocksize(
 | |
| 	struct crypto_sync_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_blocksize(&tfm->base);
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_skcipher_alignmask(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_alignmask(crypto_skcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_lskcipher_alignmask(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_alg_alignmask(crypto_lskcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline u32 crypto_skcipher_get_flags(struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_get_flags(crypto_skcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline void crypto_skcipher_set_flags(struct crypto_skcipher *tfm,
 | |
| 					       u32 flags)
 | |
| {
 | |
| 	crypto_tfm_set_flags(crypto_skcipher_tfm(tfm), flags);
 | |
| }
 | |
| 
 | |
| static inline void crypto_skcipher_clear_flags(struct crypto_skcipher *tfm,
 | |
| 						 u32 flags)
 | |
| {
 | |
| 	crypto_tfm_clear_flags(crypto_skcipher_tfm(tfm), flags);
 | |
| }
 | |
| 
 | |
| static inline u32 crypto_sync_skcipher_get_flags(
 | |
| 	struct crypto_sync_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_get_flags(&tfm->base);
 | |
| }
 | |
| 
 | |
| static inline void crypto_sync_skcipher_set_flags(
 | |
| 	struct crypto_sync_skcipher *tfm, u32 flags)
 | |
| {
 | |
| 	crypto_skcipher_set_flags(&tfm->base, flags);
 | |
| }
 | |
| 
 | |
| static inline void crypto_sync_skcipher_clear_flags(
 | |
| 	struct crypto_sync_skcipher *tfm, u32 flags)
 | |
| {
 | |
| 	crypto_skcipher_clear_flags(&tfm->base, flags);
 | |
| }
 | |
| 
 | |
| static inline u32 crypto_lskcipher_get_flags(struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_tfm_get_flags(crypto_lskcipher_tfm(tfm));
 | |
| }
 | |
| 
 | |
| static inline void crypto_lskcipher_set_flags(struct crypto_lskcipher *tfm,
 | |
| 					       u32 flags)
 | |
| {
 | |
| 	crypto_tfm_set_flags(crypto_lskcipher_tfm(tfm), flags);
 | |
| }
 | |
| 
 | |
| static inline void crypto_lskcipher_clear_flags(struct crypto_lskcipher *tfm,
 | |
| 						 u32 flags)
 | |
| {
 | |
| 	crypto_tfm_clear_flags(crypto_lskcipher_tfm(tfm), flags);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_setkey() - set key for cipher
 | |
|  * @tfm: cipher handle
 | |
|  * @key: buffer holding the key
 | |
|  * @keylen: length of the key in bytes
 | |
|  *
 | |
|  * The caller provided key is set for the skcipher referenced by the cipher
 | |
|  * handle.
 | |
|  *
 | |
|  * Note, the key length determines the cipher type. Many block ciphers implement
 | |
|  * different cipher modes depending on the key size, such as AES-128 vs AES-192
 | |
|  * vs. AES-256. When providing a 16 byte key for an AES cipher handle, AES-128
 | |
|  * is performed.
 | |
|  *
 | |
|  * Return: 0 if the setting of the key was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_skcipher_setkey(struct crypto_skcipher *tfm,
 | |
| 			   const u8 *key, unsigned int keylen);
 | |
| 
 | |
| static inline int crypto_sync_skcipher_setkey(struct crypto_sync_skcipher *tfm,
 | |
| 					 const u8 *key, unsigned int keylen)
 | |
| {
 | |
| 	return crypto_skcipher_setkey(&tfm->base, key, keylen);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_setkey() - set key for cipher
 | |
|  * @tfm: cipher handle
 | |
|  * @key: buffer holding the key
 | |
|  * @keylen: length of the key in bytes
 | |
|  *
 | |
|  * The caller provided key is set for the lskcipher referenced by the cipher
 | |
|  * handle.
 | |
|  *
 | |
|  * Note, the key length determines the cipher type. Many block ciphers implement
 | |
|  * different cipher modes depending on the key size, such as AES-128 vs AES-192
 | |
|  * vs. AES-256. When providing a 16 byte key for an AES cipher handle, AES-128
 | |
|  * is performed.
 | |
|  *
 | |
|  * Return: 0 if the setting of the key was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_lskcipher_setkey(struct crypto_lskcipher *tfm,
 | |
| 			    const u8 *key, unsigned int keylen);
 | |
| 
 | |
| static inline unsigned int crypto_skcipher_min_keysize(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_alg_common(tfm)->min_keysize;
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_skcipher_max_keysize(
 | |
| 	struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return crypto_skcipher_alg_common(tfm)->max_keysize;
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_lskcipher_min_keysize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_lskcipher_alg(tfm)->co.min_keysize;
 | |
| }
 | |
| 
 | |
| static inline unsigned int crypto_lskcipher_max_keysize(
 | |
| 	struct crypto_lskcipher *tfm)
 | |
| {
 | |
| 	return crypto_lskcipher_alg(tfm)->co.max_keysize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_reqtfm() - obtain cipher handle from request
 | |
|  * @req: skcipher_request out of which the cipher handle is to be obtained
 | |
|  *
 | |
|  * Return the crypto_skcipher handle when furnishing an skcipher_request
 | |
|  * data structure.
 | |
|  *
 | |
|  * Return: crypto_skcipher handle
 | |
|  */
 | |
| static inline struct crypto_skcipher *crypto_skcipher_reqtfm(
 | |
| 	struct skcipher_request *req)
 | |
| {
 | |
| 	return __crypto_skcipher_cast(req->base.tfm);
 | |
| }
 | |
| 
 | |
| static inline struct crypto_sync_skcipher *crypto_sync_skcipher_reqtfm(
 | |
| 	struct skcipher_request *req)
 | |
| {
 | |
| 	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
 | |
| 
 | |
| 	return container_of(tfm, struct crypto_sync_skcipher, base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_encrypt() - encrypt plaintext
 | |
|  * @req: reference to the skcipher_request handle that holds all information
 | |
|  *	 needed to perform the cipher operation
 | |
|  *
 | |
|  * Encrypt plaintext data using the skcipher_request handle. That data
 | |
|  * structure and how it is filled with data is discussed with the
 | |
|  * skcipher_request_* functions.
 | |
|  *
 | |
|  * Return: 0 if the cipher operation was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_skcipher_encrypt(struct skcipher_request *req);
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_decrypt() - decrypt ciphertext
 | |
|  * @req: reference to the skcipher_request handle that holds all information
 | |
|  *	 needed to perform the cipher operation
 | |
|  *
 | |
|  * Decrypt ciphertext data using the skcipher_request handle. That data
 | |
|  * structure and how it is filled with data is discussed with the
 | |
|  * skcipher_request_* functions.
 | |
|  *
 | |
|  * Return: 0 if the cipher operation was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_skcipher_decrypt(struct skcipher_request *req);
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_export() - export partial state
 | |
|  * @req: reference to the skcipher_request handle that holds all information
 | |
|  *	 needed to perform the operation
 | |
|  * @out: output buffer of sufficient size that can hold the state
 | |
|  *
 | |
|  * Export partial state of the transformation. This function dumps the
 | |
|  * entire state of the ongoing transformation into a provided block of
 | |
|  * data so it can be @import 'ed back later on. This is useful in case
 | |
|  * you want to save partial result of the transformation after
 | |
|  * processing certain amount of data and reload this partial result
 | |
|  * multiple times later on for multiple re-use. No data processing
 | |
|  * happens at this point.
 | |
|  *
 | |
|  * Return: 0 if the cipher operation was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_skcipher_export(struct skcipher_request *req, void *out);
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_import() - import partial state
 | |
|  * @req: reference to the skcipher_request handle that holds all information
 | |
|  *	 needed to perform the operation
 | |
|  * @in: buffer holding the state
 | |
|  *
 | |
|  * Import partial state of the transformation. This function loads the
 | |
|  * entire state of the ongoing transformation from a provided block of
 | |
|  * data so the transformation can continue from this point onward. No
 | |
|  * data processing happens at this point.
 | |
|  *
 | |
|  * Return: 0 if the cipher operation was successful; < 0 if an error occurred
 | |
|  */
 | |
| int crypto_skcipher_import(struct skcipher_request *req, const void *in);
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_encrypt() - encrypt plaintext
 | |
|  * @tfm: lskcipher handle
 | |
|  * @src: source buffer
 | |
|  * @dst: destination buffer
 | |
|  * @len: number of bytes to process
 | |
|  * @siv: IV + state for the cipher operation.  The length of the IV must
 | |
|  *	 comply with the IV size defined by crypto_lskcipher_ivsize.  The
 | |
|  *	 IV is then followed with a buffer with the length as specified by
 | |
|  *	 crypto_lskcipher_statesize.
 | |
|  * Encrypt plaintext data using the lskcipher handle.
 | |
|  *
 | |
|  * Return: >=0 if the cipher operation was successful, if positive
 | |
|  *	   then this many bytes have been left unprocessed;
 | |
|  *	   < 0 if an error occurred
 | |
|  */
 | |
| int crypto_lskcipher_encrypt(struct crypto_lskcipher *tfm, const u8 *src,
 | |
| 			     u8 *dst, unsigned len, u8 *siv);
 | |
| 
 | |
| /**
 | |
|  * crypto_lskcipher_decrypt() - decrypt ciphertext
 | |
|  * @tfm: lskcipher handle
 | |
|  * @src: source buffer
 | |
|  * @dst: destination buffer
 | |
|  * @len: number of bytes to process
 | |
|  * @siv: IV + state for the cipher operation.  The length of the IV must
 | |
|  *	 comply with the IV size defined by crypto_lskcipher_ivsize.  The
 | |
|  *	 IV is then followed with a buffer with the length as specified by
 | |
|  *	 crypto_lskcipher_statesize.
 | |
|  *
 | |
|  * Decrypt ciphertext data using the lskcipher handle.
 | |
|  *
 | |
|  * Return: >=0 if the cipher operation was successful, if positive
 | |
|  *	   then this many bytes have been left unprocessed;
 | |
|  *	   < 0 if an error occurred
 | |
|  */
 | |
| int crypto_lskcipher_decrypt(struct crypto_lskcipher *tfm, const u8 *src,
 | |
| 			     u8 *dst, unsigned len, u8 *siv);
 | |
| 
 | |
| /**
 | |
|  * DOC: Symmetric Key Cipher Request Handle
 | |
|  *
 | |
|  * The skcipher_request data structure contains all pointers to data
 | |
|  * required for the symmetric key cipher operation. This includes the cipher
 | |
|  * handle (which can be used by multiple skcipher_request instances), pointer
 | |
|  * to plaintext and ciphertext, asynchronous callback function, etc. It acts
 | |
|  * as a handle to the skcipher_request_* API calls in a similar way as
 | |
|  * skcipher handle to the crypto_skcipher_* API calls.
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * crypto_skcipher_reqsize() - obtain size of the request data structure
 | |
|  * @tfm: cipher handle
 | |
|  *
 | |
|  * Return: number of bytes
 | |
|  */
 | |
| static inline unsigned int crypto_skcipher_reqsize(struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	return tfm->reqsize;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * skcipher_request_set_tfm() - update cipher handle reference in request
 | |
|  * @req: request handle to be modified
 | |
|  * @tfm: cipher handle that shall be added to the request handle
 | |
|  *
 | |
|  * Allow the caller to replace the existing skcipher handle in the request
 | |
|  * data structure with a different one.
 | |
|  */
 | |
| static inline void skcipher_request_set_tfm(struct skcipher_request *req,
 | |
| 					    struct crypto_skcipher *tfm)
 | |
| {
 | |
| 	req->base.tfm = crypto_skcipher_tfm(tfm);
 | |
| }
 | |
| 
 | |
| static inline void skcipher_request_set_sync_tfm(struct skcipher_request *req,
 | |
| 					    struct crypto_sync_skcipher *tfm)
 | |
| {
 | |
| 	skcipher_request_set_tfm(req, &tfm->base);
 | |
| }
 | |
| 
 | |
| static inline struct skcipher_request *skcipher_request_cast(
 | |
| 	struct crypto_async_request *req)
 | |
| {
 | |
| 	return container_of(req, struct skcipher_request, base);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * skcipher_request_alloc() - allocate request data structure
 | |
|  * @tfm: cipher handle to be registered with the request
 | |
|  * @gfp: memory allocation flag that is handed to kmalloc by the API call.
 | |
|  *
 | |
|  * Allocate the request data structure that must be used with the skcipher
 | |
|  * encrypt and decrypt API calls. During the allocation, the provided skcipher
 | |
|  * handle is registered in the request data structure.
 | |
|  *
 | |
|  * Return: allocated request handle in case of success, or NULL if out of memory
 | |
|  */
 | |
| static inline struct skcipher_request *skcipher_request_alloc_noprof(
 | |
| 	struct crypto_skcipher *tfm, gfp_t gfp)
 | |
| {
 | |
| 	struct skcipher_request *req;
 | |
| 
 | |
| 	req = kmalloc_noprof(sizeof(struct skcipher_request) +
 | |
| 			     crypto_skcipher_reqsize(tfm), gfp);
 | |
| 
 | |
| 	if (likely(req))
 | |
| 		skcipher_request_set_tfm(req, tfm);
 | |
| 
 | |
| 	return req;
 | |
| }
 | |
| #define skcipher_request_alloc(...)	alloc_hooks(skcipher_request_alloc_noprof(__VA_ARGS__))
 | |
| 
 | |
| /**
 | |
|  * skcipher_request_free() - zeroize and free request data structure
 | |
|  * @req: request data structure cipher handle to be freed
 | |
|  */
 | |
| static inline void skcipher_request_free(struct skcipher_request *req)
 | |
| {
 | |
| 	kfree_sensitive(req);
 | |
| }
 | |
| 
 | |
| static inline void skcipher_request_zero(struct skcipher_request *req)
 | |
| {
 | |
| 	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
 | |
| 
 | |
| 	memzero_explicit(req, sizeof(*req) + crypto_skcipher_reqsize(tfm));
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * skcipher_request_set_callback() - set asynchronous callback function
 | |
|  * @req: request handle
 | |
|  * @flags: specify zero or an ORing of the flags
 | |
|  *	   CRYPTO_TFM_REQ_MAY_BACKLOG the request queue may back log and
 | |
|  *	   increase the wait queue beyond the initial maximum size;
 | |
|  *	   CRYPTO_TFM_REQ_MAY_SLEEP the request processing may sleep
 | |
|  * @compl: callback function pointer to be registered with the request handle
 | |
|  * @data: The data pointer refers to memory that is not used by the kernel
 | |
|  *	  crypto API, but provided to the callback function for it to use. Here,
 | |
|  *	  the caller can provide a reference to memory the callback function can
 | |
|  *	  operate on. As the callback function is invoked asynchronously to the
 | |
|  *	  related functionality, it may need to access data structures of the
 | |
|  *	  related functionality which can be referenced using this pointer. The
 | |
|  *	  callback function can access the memory via the "data" field in the
 | |
|  *	  crypto_async_request data structure provided to the callback function.
 | |
|  *
 | |
|  * This function allows setting the callback function that is triggered once the
 | |
|  * cipher operation completes.
 | |
|  *
 | |
|  * The callback function is registered with the skcipher_request handle and
 | |
|  * must comply with the following template::
 | |
|  *
 | |
|  *	void callback_function(struct crypto_async_request *req, int error)
 | |
|  */
 | |
| static inline void skcipher_request_set_callback(struct skcipher_request *req,
 | |
| 						 u32 flags,
 | |
| 						 crypto_completion_t compl,
 | |
| 						 void *data)
 | |
| {
 | |
| 	req->base.complete = compl;
 | |
| 	req->base.data = data;
 | |
| 	req->base.flags = flags;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * skcipher_request_set_crypt() - set data buffers
 | |
|  * @req: request handle
 | |
|  * @src: source scatter / gather list
 | |
|  * @dst: destination scatter / gather list
 | |
|  * @cryptlen: number of bytes to process from @src
 | |
|  * @iv: IV for the cipher operation which must comply with the IV size defined
 | |
|  *      by crypto_skcipher_ivsize
 | |
|  *
 | |
|  * This function allows setting of the source data and destination data
 | |
|  * scatter / gather lists.
 | |
|  *
 | |
|  * For encryption, the source is treated as the plaintext and the
 | |
|  * destination is the ciphertext. For a decryption operation, the use is
 | |
|  * reversed - the source is the ciphertext and the destination is the plaintext.
 | |
|  */
 | |
| static inline void skcipher_request_set_crypt(
 | |
| 	struct skcipher_request *req,
 | |
| 	struct scatterlist *src, struct scatterlist *dst,
 | |
| 	unsigned int cryptlen, void *iv)
 | |
| {
 | |
| 	req->src = src;
 | |
| 	req->dst = dst;
 | |
| 	req->cryptlen = cryptlen;
 | |
| 	req->iv = iv;
 | |
| }
 | |
| 
 | |
| #endif	/* _CRYPTO_SKCIPHER_H */
 | |
| 
 |