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

TOMOYO Linux Cross Reference
Linux/include/crypto/internal/acompress.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  * Asynchronous Compression operations
  4  *
  5  * Copyright (c) 2016, Intel Corporation
  6  * Authors: Weigang Li <weigang.li@intel.com>
  7  *          Giovanni Cabiddu <giovanni.cabiddu@intel.com>
  8  */
  9 #ifndef _CRYPTO_ACOMP_INT_H
 10 #define _CRYPTO_ACOMP_INT_H
 11 
 12 #include <crypto/acompress.h>
 13 #include <crypto/algapi.h>
 14 
 15 /**
 16  * struct acomp_alg - asynchronous compression algorithm
 17  *
 18  * @compress:   Function performs a compress operation
 19  * @decompress: Function performs a de-compress operation
 20  * @dst_free:   Frees destination buffer if allocated inside the algorithm
 21  * @init:       Initialize the cryptographic transformation object.
 22  *              This function is used to initialize the cryptographic
 23  *              transformation object. This function is called only once at
 24  *              the instantiation time, right after the transformation context
 25  *              was allocated. In case the cryptographic hardware has some
 26  *              special requirements which need to be handled by software, this
 27  *              function shall check for the precise requirement of the
 28  *              transformation and put any software fallbacks in place.
 29  * @exit:       Deinitialize the cryptographic transformation object. This is a
 30  *              counterpart to @init, used to remove various changes set in
 31  *              @init.
 32  *
 33  * @reqsize:    Context size for (de)compression requests
 34  * @base:       Common crypto API algorithm data structure
 35  * @calg:       Cmonn algorithm data structure shared with scomp
 36  */
 37 struct acomp_alg {
 38         int (*compress)(struct acomp_req *req);
 39         int (*decompress)(struct acomp_req *req);
 40         void (*dst_free)(struct scatterlist *dst);
 41         int (*init)(struct crypto_acomp *tfm);
 42         void (*exit)(struct crypto_acomp *tfm);
 43 
 44         unsigned int reqsize;
 45 
 46         union {
 47                 struct COMP_ALG_COMMON;
 48                 struct comp_alg_common calg;
 49         };
 50 };
 51 
 52 /*
 53  * Transform internal helpers.
 54  */
 55 static inline void *acomp_request_ctx(struct acomp_req *req)
 56 {
 57         return req->__ctx;
 58 }
 59 
 60 static inline void *acomp_tfm_ctx(struct crypto_acomp *tfm)
 61 {
 62         return tfm->base.__crt_ctx;
 63 }
 64 
 65 static inline void acomp_request_complete(struct acomp_req *req,
 66                                           int err)
 67 {
 68         crypto_request_complete(&req->base, err);
 69 }
 70 
 71 static inline struct acomp_req *__acomp_request_alloc_noprof(struct crypto_acomp *tfm)
 72 {
 73         struct acomp_req *req;
 74 
 75         req = kzalloc_noprof(sizeof(*req) + crypto_acomp_reqsize(tfm), GFP_KERNEL);
 76         if (likely(req))
 77                 acomp_request_set_tfm(req, tfm);
 78         return req;
 79 }
 80 #define __acomp_request_alloc(...)      alloc_hooks(__acomp_request_alloc_noprof(__VA_ARGS__))
 81 
 82 static inline void __acomp_request_free(struct acomp_req *req)
 83 {
 84         kfree_sensitive(req);
 85 }
 86 
 87 /**
 88  * crypto_register_acomp() -- Register asynchronous compression algorithm
 89  *
 90  * Function registers an implementation of an asynchronous
 91  * compression algorithm
 92  *
 93  * @alg:        algorithm definition
 94  *
 95  * Return:      zero on success; error code in case of error
 96  */
 97 int crypto_register_acomp(struct acomp_alg *alg);
 98 
 99 /**
100  * crypto_unregister_acomp() -- Unregister asynchronous compression algorithm
101  *
102  * Function unregisters an implementation of an asynchronous
103  * compression algorithm
104  *
105  * @alg:        algorithm definition
106  */
107 void crypto_unregister_acomp(struct acomp_alg *alg);
108 
109 int crypto_register_acomps(struct acomp_alg *algs, int count);
110 void crypto_unregister_acomps(struct acomp_alg *algs, int count);
111 
112 #endif
113 

~ [ 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