blob: f3946baf0c0788b9ff86f8ba7ca951e968b737b3 [file] [log] [blame]
Herbert Xucce9e062006-08-21 21:08:13 +10001/*
2 * Cryptographic API for algorithms (i.e., low-level API).
3 *
4 * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au>
5 *
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)
9 * any later version.
10 *
11 */
12#ifndef _CRYPTO_ALGAPI_H
13#define _CRYPTO_ALGAPI_H
14
15#include <linux/crypto.h>
16
Herbert Xu4cc77202006-08-06 21:16:34 +100017struct module;
Herbert Xue853c3c2006-08-22 00:06:54 +100018struct seq_file;
19
20struct crypto_type {
21 unsigned int (*ctxsize)(struct crypto_alg *alg);
22 int (*init)(struct crypto_tfm *tfm);
23 void (*exit)(struct crypto_tfm *tfm);
24 void (*show)(struct seq_file *m, struct crypto_alg *alg);
25};
Herbert Xu4cc77202006-08-06 21:16:34 +100026
27struct crypto_instance {
28 struct crypto_alg alg;
29
30 struct crypto_template *tmpl;
31 struct hlist_node list;
32
33 void *__ctx[] CRYPTO_MINALIGN_ATTR;
34};
35
36struct crypto_template {
37 struct list_head list;
38 struct hlist_head instances;
39 struct module *module;
40
41 struct crypto_instance *(*alloc)(void *param, unsigned int len);
42 void (*free)(struct crypto_instance *inst);
43
44 char name[CRYPTO_MAX_ALG_NAME];
45};
46
Herbert Xu6bfd4802006-09-21 11:39:29 +100047struct crypto_spawn {
48 struct list_head list;
49 struct crypto_alg *alg;
50 struct crypto_instance *inst;
51};
52
Herbert Xu5c640972006-08-12 21:56:17 +100053struct scatter_walk {
54 struct scatterlist *sg;
55 unsigned int offset;
56};
57
Herbert Xu5cde0af2006-08-22 00:07:53 +100058struct blkcipher_walk {
59 union {
60 struct {
61 struct page *page;
62 unsigned long offset;
63 } phys;
64
65 struct {
66 u8 *page;
67 u8 *addr;
68 } virt;
69 } src, dst;
70
71 struct scatter_walk in;
72 unsigned int nbytes;
73
74 struct scatter_walk out;
75 unsigned int total;
76
77 void *page;
78 u8 *buffer;
79 u8 *iv;
80
81 int flags;
82};
83
84extern const struct crypto_type crypto_blkcipher_type;
85
Herbert Xu4cc77202006-08-06 21:16:34 +100086int crypto_register_template(struct crypto_template *tmpl);
87void crypto_unregister_template(struct crypto_template *tmpl);
88struct crypto_template *crypto_lookup_template(const char *name);
89
Herbert Xu6bfd4802006-09-21 11:39:29 +100090int crypto_init_spawn(struct crypto_spawn *spawn, struct crypto_alg *alg,
91 struct crypto_instance *inst);
92void crypto_drop_spawn(struct crypto_spawn *spawn);
93struct crypto_tfm *crypto_spawn_tfm(struct crypto_spawn *spawn);
94
Herbert Xu7fed0bf2006-08-06 23:10:45 +100095struct crypto_alg *crypto_get_attr_alg(void *param, unsigned int len,
96 u32 type, u32 mask);
97struct crypto_instance *crypto_alloc_instance(const char *name,
98 struct crypto_alg *alg);
99
Herbert Xu5cde0af2006-08-22 00:07:53 +1000100int blkcipher_walk_done(struct blkcipher_desc *desc,
101 struct blkcipher_walk *walk, int err);
102int blkcipher_walk_virt(struct blkcipher_desc *desc,
103 struct blkcipher_walk *walk);
104int blkcipher_walk_phys(struct blkcipher_desc *desc,
105 struct blkcipher_walk *walk);
106
107static inline void *crypto_tfm_ctx_aligned(struct crypto_tfm *tfm)
108{
109 unsigned long addr = (unsigned long)crypto_tfm_ctx(tfm);
110 unsigned long align = crypto_tfm_alg_alignmask(tfm);
111
112 if (align <= crypto_tfm_ctx_alignment())
113 align = 1;
114 return (void *)ALIGN(addr, align);
115}
116
Herbert Xu4cc77202006-08-06 21:16:34 +1000117static inline void *crypto_instance_ctx(struct crypto_instance *inst)
118{
119 return inst->__ctx;
120}
121
Herbert Xu5cde0af2006-08-22 00:07:53 +1000122static inline void *crypto_blkcipher_ctx(struct crypto_blkcipher *tfm)
123{
124 return crypto_tfm_ctx(&tfm->base);
125}
126
127static inline void *crypto_blkcipher_ctx_aligned(struct crypto_blkcipher *tfm)
128{
129 return crypto_tfm_ctx_aligned(&tfm->base);
130}
131
Herbert Xuf28776a2006-08-13 20:58:18 +1000132static inline struct cipher_alg *crypto_cipher_alg(struct crypto_cipher *tfm)
133{
134 return &crypto_cipher_tfm(tfm)->__crt_alg->cra_cipher;
135}
136
Herbert Xu5cde0af2006-08-22 00:07:53 +1000137static inline void blkcipher_walk_init(struct blkcipher_walk *walk,
138 struct scatterlist *dst,
139 struct scatterlist *src,
140 unsigned int nbytes)
141{
142 walk->in.sg = src;
143 walk->out.sg = dst;
144 walk->total = nbytes;
145}
146
Herbert Xucce9e062006-08-21 21:08:13 +1000147#endif /* _CRYPTO_ALGAPI_H */
148