2 * ECB: Electronic CodeBook mode
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
13 #include <crypto/algapi.h>
14 #include <linux/err.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/scatterlist.h>
19 #include <linux/slab.h>
21 struct crypto_ecb_ctx
{
22 struct crypto_cipher
*child
;
25 static int crypto_ecb_setkey(struct crypto_tfm
*parent
, const u8
*key
,
28 struct crypto_ecb_ctx
*ctx
= crypto_tfm_ctx(parent
);
29 struct crypto_cipher
*child
= ctx
->child
;
32 crypto_cipher_clear_flags(child
, CRYPTO_TFM_REQ_MASK
);
33 crypto_cipher_set_flags(child
, crypto_tfm_get_flags(parent
) &
35 err
= crypto_cipher_setkey(child
, key
, keylen
);
36 crypto_tfm_set_flags(parent
, crypto_cipher_get_flags(child
) &
41 static int crypto_ecb_crypt(struct blkcipher_desc
*desc
,
42 struct blkcipher_walk
*walk
,
43 struct crypto_cipher
*tfm
,
44 void (*fn
)(struct crypto_tfm
*, u8
*, const u8
*))
46 int bsize
= crypto_cipher_blocksize(tfm
);
50 err
= blkcipher_walk_virt(desc
, walk
);
52 while ((nbytes
= walk
->nbytes
)) {
53 u8
*wsrc
= walk
->src
.virt
.addr
;
54 u8
*wdst
= walk
->dst
.virt
.addr
;
57 fn(crypto_cipher_tfm(tfm
), wdst
, wsrc
);
61 } while ((nbytes
-= bsize
) >= bsize
);
63 err
= blkcipher_walk_done(desc
, walk
, nbytes
);
69 static int crypto_ecb_encrypt(struct blkcipher_desc
*desc
,
70 struct scatterlist
*dst
, struct scatterlist
*src
,
73 struct blkcipher_walk walk
;
74 struct crypto_blkcipher
*tfm
= desc
->tfm
;
75 struct crypto_ecb_ctx
*ctx
= crypto_blkcipher_ctx(tfm
);
76 struct crypto_cipher
*child
= ctx
->child
;
78 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
79 return crypto_ecb_crypt(desc
, &walk
, child
,
80 crypto_cipher_alg(child
)->cia_encrypt
);
83 static int crypto_ecb_decrypt(struct blkcipher_desc
*desc
,
84 struct scatterlist
*dst
, struct scatterlist
*src
,
87 struct blkcipher_walk walk
;
88 struct crypto_blkcipher
*tfm
= desc
->tfm
;
89 struct crypto_ecb_ctx
*ctx
= crypto_blkcipher_ctx(tfm
);
90 struct crypto_cipher
*child
= ctx
->child
;
92 blkcipher_walk_init(&walk
, dst
, src
, nbytes
);
93 return crypto_ecb_crypt(desc
, &walk
, child
,
94 crypto_cipher_alg(child
)->cia_decrypt
);
97 static int crypto_ecb_init_tfm(struct crypto_tfm
*tfm
)
99 struct crypto_instance
*inst
= (void *)tfm
->__crt_alg
;
100 struct crypto_spawn
*spawn
= crypto_instance_ctx(inst
);
101 struct crypto_ecb_ctx
*ctx
= crypto_tfm_ctx(tfm
);
102 struct crypto_cipher
*cipher
;
104 cipher
= crypto_spawn_cipher(spawn
);
106 return PTR_ERR(cipher
);
112 static void crypto_ecb_exit_tfm(struct crypto_tfm
*tfm
)
114 struct crypto_ecb_ctx
*ctx
= crypto_tfm_ctx(tfm
);
115 crypto_free_cipher(ctx
->child
);
118 static struct crypto_instance
*crypto_ecb_alloc(struct rtattr
**tb
)
120 struct crypto_instance
*inst
;
121 struct crypto_alg
*alg
;
124 err
= crypto_check_attr_type(tb
, CRYPTO_ALG_TYPE_BLKCIPHER
);
128 alg
= crypto_get_attr_alg(tb
, CRYPTO_ALG_TYPE_CIPHER
,
129 CRYPTO_ALG_TYPE_MASK
);
131 return ERR_CAST(alg
);
133 inst
= crypto_alloc_instance("ecb", alg
);
137 inst
->alg
.cra_flags
= CRYPTO_ALG_TYPE_BLKCIPHER
;
138 inst
->alg
.cra_priority
= alg
->cra_priority
;
139 inst
->alg
.cra_blocksize
= alg
->cra_blocksize
;
140 inst
->alg
.cra_alignmask
= alg
->cra_alignmask
;
141 inst
->alg
.cra_type
= &crypto_blkcipher_type
;
143 inst
->alg
.cra_blkcipher
.min_keysize
= alg
->cra_cipher
.cia_min_keysize
;
144 inst
->alg
.cra_blkcipher
.max_keysize
= alg
->cra_cipher
.cia_max_keysize
;
146 inst
->alg
.cra_ctxsize
= sizeof(struct crypto_ecb_ctx
);
148 inst
->alg
.cra_init
= crypto_ecb_init_tfm
;
149 inst
->alg
.cra_exit
= crypto_ecb_exit_tfm
;
151 inst
->alg
.cra_blkcipher
.setkey
= crypto_ecb_setkey
;
152 inst
->alg
.cra_blkcipher
.encrypt
= crypto_ecb_encrypt
;
153 inst
->alg
.cra_blkcipher
.decrypt
= crypto_ecb_decrypt
;
160 static void crypto_ecb_free(struct crypto_instance
*inst
)
162 crypto_drop_spawn(crypto_instance_ctx(inst
));
166 static struct crypto_template crypto_ecb_tmpl
= {
168 .alloc
= crypto_ecb_alloc
,
169 .free
= crypto_ecb_free
,
170 .module
= THIS_MODULE
,
173 static int __init
crypto_ecb_module_init(void)
175 return crypto_register_template(&crypto_ecb_tmpl
);
178 static void __exit
crypto_ecb_module_exit(void)
180 crypto_unregister_template(&crypto_ecb_tmpl
);
183 module_init(crypto_ecb_module_init
);
184 module_exit(crypto_ecb_module_exit
);
186 MODULE_LICENSE("GPL");
187 MODULE_DESCRIPTION("ECB block cipher algorithm");