2 * Symmetric key cipher operations.
4 * Generic encrypt/decrypt wrapper for ciphers, handles operations across
5 * multiple page boundaries by using temporary blocks. In user context,
6 * the kernel is given a chance to schedule us once per page.
8 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
17 #include <crypto/internal/skcipher.h>
18 #include <linux/bug.h>
19 #include <linux/module.h>
23 static unsigned int crypto_skcipher_extsize(struct crypto_alg
*alg
)
25 if (alg
->cra_type
== &crypto_blkcipher_type
)
26 return sizeof(struct crypto_blkcipher
*);
28 BUG_ON(alg
->cra_type
!= &crypto_ablkcipher_type
&&
29 alg
->cra_type
!= &crypto_givcipher_type
);
31 return sizeof(struct crypto_ablkcipher
*);
34 static int skcipher_setkey_blkcipher(struct crypto_skcipher
*tfm
,
35 const u8
*key
, unsigned int keylen
)
37 struct crypto_blkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
38 struct crypto_blkcipher
*blkcipher
= *ctx
;
41 crypto_blkcipher_clear_flags(blkcipher
, ~0);
42 crypto_blkcipher_set_flags(blkcipher
, crypto_skcipher_get_flags(tfm
) &
44 err
= crypto_blkcipher_setkey(blkcipher
, key
, keylen
);
45 crypto_skcipher_set_flags(tfm
, crypto_blkcipher_get_flags(blkcipher
) &
51 static int skcipher_crypt_blkcipher(struct skcipher_request
*req
,
52 int (*crypt
)(struct blkcipher_desc
*,
57 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(req
);
58 struct crypto_blkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
59 struct blkcipher_desc desc
= {
62 .flags
= req
->base
.flags
,
66 return crypt(&desc
, req
->dst
, req
->src
, req
->cryptlen
);
69 static int skcipher_encrypt_blkcipher(struct skcipher_request
*req
)
71 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
72 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
73 struct blkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_blkcipher
;
75 return skcipher_crypt_blkcipher(req
, alg
->encrypt
);
78 static int skcipher_decrypt_blkcipher(struct skcipher_request
*req
)
80 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
81 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
82 struct blkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_blkcipher
;
84 return skcipher_crypt_blkcipher(req
, alg
->decrypt
);
87 static void crypto_exit_skcipher_ops_blkcipher(struct crypto_tfm
*tfm
)
89 struct crypto_blkcipher
**ctx
= crypto_tfm_ctx(tfm
);
91 crypto_free_blkcipher(*ctx
);
94 static int crypto_init_skcipher_ops_blkcipher(struct crypto_tfm
*tfm
)
96 struct crypto_alg
*calg
= tfm
->__crt_alg
;
97 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
98 struct crypto_blkcipher
**ctx
= crypto_tfm_ctx(tfm
);
99 struct crypto_blkcipher
*blkcipher
;
100 struct crypto_tfm
*btfm
;
102 if (!crypto_mod_get(calg
))
105 btfm
= __crypto_alloc_tfm(calg
, CRYPTO_ALG_TYPE_BLKCIPHER
,
106 CRYPTO_ALG_TYPE_MASK
);
108 crypto_mod_put(calg
);
109 return PTR_ERR(btfm
);
112 blkcipher
= __crypto_blkcipher_cast(btfm
);
114 tfm
->exit
= crypto_exit_skcipher_ops_blkcipher
;
116 skcipher
->setkey
= skcipher_setkey_blkcipher
;
117 skcipher
->encrypt
= skcipher_encrypt_blkcipher
;
118 skcipher
->decrypt
= skcipher_decrypt_blkcipher
;
120 skcipher
->ivsize
= crypto_blkcipher_ivsize(blkcipher
);
121 skcipher
->keysize
= calg
->cra_blkcipher
.max_keysize
;
126 static int skcipher_setkey_ablkcipher(struct crypto_skcipher
*tfm
,
127 const u8
*key
, unsigned int keylen
)
129 struct crypto_ablkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
130 struct crypto_ablkcipher
*ablkcipher
= *ctx
;
133 crypto_ablkcipher_clear_flags(ablkcipher
, ~0);
134 crypto_ablkcipher_set_flags(ablkcipher
,
135 crypto_skcipher_get_flags(tfm
) &
136 CRYPTO_TFM_REQ_MASK
);
137 err
= crypto_ablkcipher_setkey(ablkcipher
, key
, keylen
);
138 crypto_skcipher_set_flags(tfm
,
139 crypto_ablkcipher_get_flags(ablkcipher
) &
140 CRYPTO_TFM_RES_MASK
);
145 static int skcipher_crypt_ablkcipher(struct skcipher_request
*req
,
146 int (*crypt
)(struct ablkcipher_request
*))
148 struct crypto_skcipher
*tfm
= crypto_skcipher_reqtfm(req
);
149 struct crypto_ablkcipher
**ctx
= crypto_skcipher_ctx(tfm
);
150 struct ablkcipher_request
*subreq
= skcipher_request_ctx(req
);
152 ablkcipher_request_set_tfm(subreq
, *ctx
);
153 ablkcipher_request_set_callback(subreq
, skcipher_request_flags(req
),
154 req
->base
.complete
, req
->base
.data
);
155 ablkcipher_request_set_crypt(subreq
, req
->src
, req
->dst
, req
->cryptlen
,
158 return crypt(subreq
);
161 static int skcipher_encrypt_ablkcipher(struct skcipher_request
*req
)
163 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
164 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
165 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
167 return skcipher_crypt_ablkcipher(req
, alg
->encrypt
);
170 static int skcipher_decrypt_ablkcipher(struct skcipher_request
*req
)
172 struct crypto_skcipher
*skcipher
= crypto_skcipher_reqtfm(req
);
173 struct crypto_tfm
*tfm
= crypto_skcipher_tfm(skcipher
);
174 struct ablkcipher_alg
*alg
= &tfm
->__crt_alg
->cra_ablkcipher
;
176 return skcipher_crypt_ablkcipher(req
, alg
->decrypt
);
179 static void crypto_exit_skcipher_ops_ablkcipher(struct crypto_tfm
*tfm
)
181 struct crypto_ablkcipher
**ctx
= crypto_tfm_ctx(tfm
);
183 crypto_free_ablkcipher(*ctx
);
186 static int crypto_init_skcipher_ops_ablkcipher(struct crypto_tfm
*tfm
)
188 struct crypto_alg
*calg
= tfm
->__crt_alg
;
189 struct crypto_skcipher
*skcipher
= __crypto_skcipher_cast(tfm
);
190 struct crypto_ablkcipher
**ctx
= crypto_tfm_ctx(tfm
);
191 struct crypto_ablkcipher
*ablkcipher
;
192 struct crypto_tfm
*abtfm
;
194 if (!crypto_mod_get(calg
))
197 abtfm
= __crypto_alloc_tfm(calg
, 0, 0);
199 crypto_mod_put(calg
);
200 return PTR_ERR(abtfm
);
203 ablkcipher
= __crypto_ablkcipher_cast(abtfm
);
205 tfm
->exit
= crypto_exit_skcipher_ops_ablkcipher
;
207 skcipher
->setkey
= skcipher_setkey_ablkcipher
;
208 skcipher
->encrypt
= skcipher_encrypt_ablkcipher
;
209 skcipher
->decrypt
= skcipher_decrypt_ablkcipher
;
211 skcipher
->ivsize
= crypto_ablkcipher_ivsize(ablkcipher
);
212 skcipher
->reqsize
= crypto_ablkcipher_reqsize(ablkcipher
) +
213 sizeof(struct ablkcipher_request
);
214 skcipher
->keysize
= calg
->cra_ablkcipher
.max_keysize
;
219 static int crypto_skcipher_init_tfm(struct crypto_tfm
*tfm
)
221 if (tfm
->__crt_alg
->cra_type
== &crypto_blkcipher_type
)
222 return crypto_init_skcipher_ops_blkcipher(tfm
);
224 BUG_ON(tfm
->__crt_alg
->cra_type
!= &crypto_ablkcipher_type
&&
225 tfm
->__crt_alg
->cra_type
!= &crypto_givcipher_type
);
227 return crypto_init_skcipher_ops_ablkcipher(tfm
);
230 static const struct crypto_type crypto_skcipher_type2
= {
231 .extsize
= crypto_skcipher_extsize
,
232 .init_tfm
= crypto_skcipher_init_tfm
,
233 .maskclear
= ~CRYPTO_ALG_TYPE_MASK
,
234 .maskset
= CRYPTO_ALG_TYPE_BLKCIPHER_MASK
,
235 .type
= CRYPTO_ALG_TYPE_BLKCIPHER
,
236 .tfmsize
= offsetof(struct crypto_skcipher
, base
),
239 struct crypto_skcipher
*crypto_alloc_skcipher(const char *alg_name
,
242 return crypto_alloc_tfm(alg_name
, &crypto_skcipher_type2
, type
, mask
);
244 EXPORT_SYMBOL_GPL(crypto_alloc_skcipher
);
246 MODULE_LICENSE("GPL");
247 MODULE_DESCRIPTION("Symmetric key cipher type");