2 * Synchronous Compression operations
4 * Copyright 2015 LG Electronics Inc.
5 * Copyright (c) 2016, Intel Corporation
6 * Author: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
14 #ifndef _CRYPTO_SCOMP_INT_H
15 #define _CRYPTO_SCOMP_INT_H
16 #include <linux/crypto.h>
18 #define SCOMP_SCRATCH_SIZE 131072
21 struct crypto_tfm base
;
25 * struct scomp_alg - synchronous compression algorithm
27 * @alloc_ctx: Function allocates algorithm specific context
28 * @free_ctx: Function frees context allocated with alloc_ctx
29 * @compress: Function performs a compress operation
30 * @decompress: Function performs a de-compress operation
31 * @base: Common crypto API algorithm data structure
34 void *(*alloc_ctx
)(struct crypto_scomp
*tfm
);
35 void (*free_ctx
)(struct crypto_scomp
*tfm
, void *ctx
);
36 int (*compress
)(struct crypto_scomp
*tfm
, const u8
*src
,
37 unsigned int slen
, u8
*dst
, unsigned int *dlen
,
39 int (*decompress
)(struct crypto_scomp
*tfm
, const u8
*src
,
40 unsigned int slen
, u8
*dst
, unsigned int *dlen
,
42 struct crypto_alg base
;
45 static inline struct scomp_alg
*__crypto_scomp_alg(struct crypto_alg
*alg
)
47 return container_of(alg
, struct scomp_alg
, base
);
50 static inline struct crypto_scomp
*__crypto_scomp_tfm(struct crypto_tfm
*tfm
)
52 return container_of(tfm
, struct crypto_scomp
, base
);
55 static inline struct crypto_tfm
*crypto_scomp_tfm(struct crypto_scomp
*tfm
)
60 static inline void crypto_free_scomp(struct crypto_scomp
*tfm
)
62 crypto_destroy_tfm(tfm
, crypto_scomp_tfm(tfm
));
65 static inline struct scomp_alg
*crypto_scomp_alg(struct crypto_scomp
*tfm
)
67 return __crypto_scomp_alg(crypto_scomp_tfm(tfm
)->__crt_alg
);
70 static inline void *crypto_scomp_alloc_ctx(struct crypto_scomp
*tfm
)
72 return crypto_scomp_alg(tfm
)->alloc_ctx(tfm
);
75 static inline void crypto_scomp_free_ctx(struct crypto_scomp
*tfm
,
78 return crypto_scomp_alg(tfm
)->free_ctx(tfm
, ctx
);
81 static inline int crypto_scomp_compress(struct crypto_scomp
*tfm
,
82 const u8
*src
, unsigned int slen
,
83 u8
*dst
, unsigned int *dlen
, void *ctx
)
85 return crypto_scomp_alg(tfm
)->compress(tfm
, src
, slen
, dst
, dlen
, ctx
);
88 static inline int crypto_scomp_decompress(struct crypto_scomp
*tfm
,
89 const u8
*src
, unsigned int slen
,
90 u8
*dst
, unsigned int *dlen
,
93 return crypto_scomp_alg(tfm
)->decompress(tfm
, src
, slen
, dst
, dlen
,
97 int crypto_init_scomp_ops_async(struct crypto_tfm
*tfm
);
98 struct acomp_req
*crypto_acomp_scomp_alloc_ctx(struct acomp_req
*req
);
99 void crypto_acomp_scomp_free_ctx(struct acomp_req
*req
);
102 * crypto_register_scomp() -- Register synchronous compression algorithm
104 * Function registers an implementation of a synchronous
105 * compression algorithm
107 * @alg: algorithm definition
109 * Return: zero on success; error code in case of error
111 int crypto_register_scomp(struct scomp_alg
*alg
);
114 * crypto_unregister_scomp() -- Unregister synchronous compression algorithm
116 * Function unregisters an implementation of a synchronous
117 * compression algorithm
119 * @alg: algorithm definition
121 * Return: zero on success; error code in case of error
123 int crypto_unregister_scomp(struct scomp_alg
*alg
);
125 int crypto_register_scomps(struct scomp_alg
*algs
, int count
);
126 void crypto_unregister_scomps(struct scomp_alg
*algs
, int count
);