[MIPS] prom_free_prom_memory cleanup
[linux-2.6/linux-mips.git] / crypto / blkcipher.c
blob6e93004f2181ccb3f265994cf9806db528641796
1 /*
2 * Block chaining cipher operations.
3 *
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) 2006 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)
13 * any later version.
17 #include <linux/crypto.h>
18 #include <linux/errno.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/scatterlist.h>
22 #include <linux/seq_file.h>
23 #include <linux/slab.h>
24 #include <linux/string.h>
26 #include "internal.h"
27 #include "scatterwalk.h"
29 enum {
30 BLKCIPHER_WALK_PHYS = 1 << 0,
31 BLKCIPHER_WALK_SLOW = 1 << 1,
32 BLKCIPHER_WALK_COPY = 1 << 2,
33 BLKCIPHER_WALK_DIFF = 1 << 3,
36 static int blkcipher_walk_next(struct blkcipher_desc *desc,
37 struct blkcipher_walk *walk);
38 static int blkcipher_walk_first(struct blkcipher_desc *desc,
39 struct blkcipher_walk *walk);
41 static inline void blkcipher_map_src(struct blkcipher_walk *walk)
43 walk->src.virt.addr = scatterwalk_map(&walk->in, 0);
46 static inline void blkcipher_map_dst(struct blkcipher_walk *walk)
48 walk->dst.virt.addr = scatterwalk_map(&walk->out, 1);
51 static inline void blkcipher_unmap_src(struct blkcipher_walk *walk)
53 scatterwalk_unmap(walk->src.virt.addr, 0);
56 static inline void blkcipher_unmap_dst(struct blkcipher_walk *walk)
58 scatterwalk_unmap(walk->dst.virt.addr, 1);
61 static inline u8 *blkcipher_get_spot(u8 *start, unsigned int len)
63 if (offset_in_page(start + len) < len)
64 return (u8 *)((unsigned long)(start + len) & PAGE_MASK);
65 return start;
68 static inline unsigned int blkcipher_done_slow(struct crypto_blkcipher *tfm,
69 struct blkcipher_walk *walk,
70 unsigned int bsize)
72 u8 *addr;
73 unsigned int alignmask = crypto_blkcipher_alignmask(tfm);
75 addr = (u8 *)ALIGN((unsigned long)walk->buffer, alignmask + 1);
76 addr = blkcipher_get_spot(addr, bsize);
77 scatterwalk_copychunks(addr, &walk->out, bsize, 1);
78 return bsize;
81 static inline unsigned int blkcipher_done_fast(struct blkcipher_walk *walk,
82 unsigned int n)
84 n = walk->nbytes - n;
86 if (walk->flags & BLKCIPHER_WALK_COPY) {
87 blkcipher_map_dst(walk);
88 memcpy(walk->dst.virt.addr, walk->page, n);
89 blkcipher_unmap_dst(walk);
90 } else if (!(walk->flags & BLKCIPHER_WALK_PHYS)) {
91 blkcipher_unmap_src(walk);
92 if (walk->flags & BLKCIPHER_WALK_DIFF)
93 blkcipher_unmap_dst(walk);
96 scatterwalk_advance(&walk->in, n);
97 scatterwalk_advance(&walk->out, n);
99 return n;
102 int blkcipher_walk_done(struct blkcipher_desc *desc,
103 struct blkcipher_walk *walk, int err)
105 struct crypto_blkcipher *tfm = desc->tfm;
106 unsigned int nbytes = 0;
108 if (likely(err >= 0)) {
109 unsigned int bsize = crypto_blkcipher_blocksize(tfm);
110 unsigned int n;
112 if (likely(!(walk->flags & BLKCIPHER_WALK_SLOW)))
113 n = blkcipher_done_fast(walk, err);
114 else
115 n = blkcipher_done_slow(tfm, walk, bsize);
117 nbytes = walk->total - n;
118 err = 0;
121 scatterwalk_done(&walk->in, 0, nbytes);
122 scatterwalk_done(&walk->out, 1, nbytes);
124 walk->total = nbytes;
125 walk->nbytes = nbytes;
127 if (nbytes) {
128 crypto_yield(desc->flags);
129 return blkcipher_walk_next(desc, walk);
132 if (walk->iv != desc->info)
133 memcpy(desc->info, walk->iv, crypto_blkcipher_ivsize(tfm));
134 if (walk->buffer != walk->page)
135 kfree(walk->buffer);
136 if (walk->page)
137 free_page((unsigned long)walk->page);
139 return err;
141 EXPORT_SYMBOL_GPL(blkcipher_walk_done);
143 static inline int blkcipher_next_slow(struct blkcipher_desc *desc,
144 struct blkcipher_walk *walk,
145 unsigned int bsize,
146 unsigned int alignmask)
148 unsigned int n;
150 if (walk->buffer)
151 goto ok;
153 walk->buffer = walk->page;
154 if (walk->buffer)
155 goto ok;
157 n = bsize * 2 + (alignmask & ~(crypto_tfm_ctx_alignment() - 1));
158 walk->buffer = kmalloc(n, GFP_ATOMIC);
159 if (!walk->buffer)
160 return blkcipher_walk_done(desc, walk, -ENOMEM);
163 walk->dst.virt.addr = (u8 *)ALIGN((unsigned long)walk->buffer,
164 alignmask + 1);
165 walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize);
166 walk->src.virt.addr = blkcipher_get_spot(walk->dst.virt.addr + bsize,
167 bsize);
169 scatterwalk_copychunks(walk->src.virt.addr, &walk->in, bsize, 0);
171 walk->nbytes = bsize;
172 walk->flags |= BLKCIPHER_WALK_SLOW;
174 return 0;
177 static inline int blkcipher_next_copy(struct blkcipher_walk *walk)
179 u8 *tmp = walk->page;
181 blkcipher_map_src(walk);
182 memcpy(tmp, walk->src.virt.addr, walk->nbytes);
183 blkcipher_unmap_src(walk);
185 walk->src.virt.addr = tmp;
186 walk->dst.virt.addr = tmp;
188 return 0;
191 static inline int blkcipher_next_fast(struct blkcipher_desc *desc,
192 struct blkcipher_walk *walk)
194 unsigned long diff;
196 walk->src.phys.page = scatterwalk_page(&walk->in);
197 walk->src.phys.offset = offset_in_page(walk->in.offset);
198 walk->dst.phys.page = scatterwalk_page(&walk->out);
199 walk->dst.phys.offset = offset_in_page(walk->out.offset);
201 if (walk->flags & BLKCIPHER_WALK_PHYS)
202 return 0;
204 diff = walk->src.phys.offset - walk->dst.phys.offset;
205 diff |= walk->src.virt.page - walk->dst.virt.page;
207 blkcipher_map_src(walk);
208 walk->dst.virt.addr = walk->src.virt.addr;
210 if (diff) {
211 walk->flags |= BLKCIPHER_WALK_DIFF;
212 blkcipher_map_dst(walk);
215 return 0;
218 static int blkcipher_walk_next(struct blkcipher_desc *desc,
219 struct blkcipher_walk *walk)
221 struct crypto_blkcipher *tfm = desc->tfm;
222 unsigned int alignmask = crypto_blkcipher_alignmask(tfm);
223 unsigned int bsize = crypto_blkcipher_blocksize(tfm);
224 unsigned int n;
225 int err;
227 n = walk->total;
228 if (unlikely(n < bsize)) {
229 desc->flags |= CRYPTO_TFM_RES_BAD_BLOCK_LEN;
230 return blkcipher_walk_done(desc, walk, -EINVAL);
233 walk->flags &= ~(BLKCIPHER_WALK_SLOW | BLKCIPHER_WALK_COPY |
234 BLKCIPHER_WALK_DIFF);
235 if (!scatterwalk_aligned(&walk->in, alignmask) ||
236 !scatterwalk_aligned(&walk->out, alignmask)) {
237 walk->flags |= BLKCIPHER_WALK_COPY;
238 if (!walk->page) {
239 walk->page = (void *)__get_free_page(GFP_ATOMIC);
240 if (!walk->page)
241 n = 0;
245 n = scatterwalk_clamp(&walk->in, n);
246 n = scatterwalk_clamp(&walk->out, n);
248 if (unlikely(n < bsize)) {
249 err = blkcipher_next_slow(desc, walk, bsize, alignmask);
250 goto set_phys_lowmem;
253 walk->nbytes = n;
254 if (walk->flags & BLKCIPHER_WALK_COPY) {
255 err = blkcipher_next_copy(walk);
256 goto set_phys_lowmem;
259 return blkcipher_next_fast(desc, walk);
261 set_phys_lowmem:
262 if (walk->flags & BLKCIPHER_WALK_PHYS) {
263 walk->src.phys.page = virt_to_page(walk->src.virt.addr);
264 walk->dst.phys.page = virt_to_page(walk->dst.virt.addr);
265 walk->src.phys.offset &= PAGE_SIZE - 1;
266 walk->dst.phys.offset &= PAGE_SIZE - 1;
268 return err;
271 static inline int blkcipher_copy_iv(struct blkcipher_walk *walk,
272 struct crypto_blkcipher *tfm,
273 unsigned int alignmask)
275 unsigned bs = crypto_blkcipher_blocksize(tfm);
276 unsigned int ivsize = crypto_blkcipher_ivsize(tfm);
277 unsigned int size = bs * 2 + ivsize + max(bs, ivsize) - (alignmask + 1);
278 u8 *iv;
280 size += alignmask & ~(crypto_tfm_ctx_alignment() - 1);
281 walk->buffer = kmalloc(size, GFP_ATOMIC);
282 if (!walk->buffer)
283 return -ENOMEM;
285 iv = (u8 *)ALIGN((unsigned long)walk->buffer, alignmask + 1);
286 iv = blkcipher_get_spot(iv, bs) + bs;
287 iv = blkcipher_get_spot(iv, bs) + bs;
288 iv = blkcipher_get_spot(iv, ivsize);
290 walk->iv = memcpy(iv, walk->iv, ivsize);
291 return 0;
294 int blkcipher_walk_virt(struct blkcipher_desc *desc,
295 struct blkcipher_walk *walk)
297 walk->flags &= ~BLKCIPHER_WALK_PHYS;
298 return blkcipher_walk_first(desc, walk);
300 EXPORT_SYMBOL_GPL(blkcipher_walk_virt);
302 int blkcipher_walk_phys(struct blkcipher_desc *desc,
303 struct blkcipher_walk *walk)
305 walk->flags |= BLKCIPHER_WALK_PHYS;
306 return blkcipher_walk_first(desc, walk);
308 EXPORT_SYMBOL_GPL(blkcipher_walk_phys);
310 static int blkcipher_walk_first(struct blkcipher_desc *desc,
311 struct blkcipher_walk *walk)
313 struct crypto_blkcipher *tfm = desc->tfm;
314 unsigned int alignmask = crypto_blkcipher_alignmask(tfm);
316 walk->nbytes = walk->total;
317 if (unlikely(!walk->total))
318 return 0;
320 walk->buffer = NULL;
321 walk->iv = desc->info;
322 if (unlikely(((unsigned long)walk->iv & alignmask))) {
323 int err = blkcipher_copy_iv(walk, tfm, alignmask);
324 if (err)
325 return err;
328 scatterwalk_start(&walk->in, walk->in.sg);
329 scatterwalk_start(&walk->out, walk->out.sg);
330 walk->page = NULL;
332 return blkcipher_walk_next(desc, walk);
335 static int setkey(struct crypto_tfm *tfm, const u8 *key,
336 unsigned int keylen)
338 struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher;
340 if (keylen < cipher->min_keysize || keylen > cipher->max_keysize) {
341 tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN;
342 return -EINVAL;
345 return cipher->setkey(tfm, key, keylen);
348 static unsigned int crypto_blkcipher_ctxsize(struct crypto_alg *alg)
350 struct blkcipher_alg *cipher = &alg->cra_blkcipher;
351 unsigned int len = alg->cra_ctxsize;
353 if (cipher->ivsize) {
354 len = ALIGN(len, (unsigned long)alg->cra_alignmask + 1);
355 len += cipher->ivsize;
358 return len;
361 static int crypto_init_blkcipher_ops(struct crypto_tfm *tfm)
363 struct blkcipher_tfm *crt = &tfm->crt_blkcipher;
364 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher;
365 unsigned long align = crypto_tfm_alg_alignmask(tfm) + 1;
366 unsigned long addr;
368 if (alg->ivsize > PAGE_SIZE / 8)
369 return -EINVAL;
371 crt->setkey = setkey;
372 crt->encrypt = alg->encrypt;
373 crt->decrypt = alg->decrypt;
375 addr = (unsigned long)crypto_tfm_ctx(tfm);
376 addr = ALIGN(addr, align);
377 addr += ALIGN(tfm->__crt_alg->cra_ctxsize, align);
378 crt->iv = (void *)addr;
380 return 0;
383 static void crypto_blkcipher_show(struct seq_file *m, struct crypto_alg *alg)
384 __attribute_used__;
385 static void crypto_blkcipher_show(struct seq_file *m, struct crypto_alg *alg)
387 seq_printf(m, "type : blkcipher\n");
388 seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
389 seq_printf(m, "min keysize : %u\n", alg->cra_blkcipher.min_keysize);
390 seq_printf(m, "max keysize : %u\n", alg->cra_blkcipher.max_keysize);
391 seq_printf(m, "ivsize : %u\n", alg->cra_blkcipher.ivsize);
394 const struct crypto_type crypto_blkcipher_type = {
395 .ctxsize = crypto_blkcipher_ctxsize,
396 .init = crypto_init_blkcipher_ops,
397 #ifdef CONFIG_PROC_FS
398 .show = crypto_blkcipher_show,
399 #endif
401 EXPORT_SYMBOL_GPL(crypto_blkcipher_type);
403 MODULE_LICENSE("GPL");
404 MODULE_DESCRIPTION("Generic block chaining cipher type");