Blame view

crypto/echainiv.c 4.59 KB
a10f554fa   Herbert Xu   crypto: echainiv ...
1
2
3
  /*
   * echainiv: Encrypted Chain IV Generator
   *
53a5d5ddc   Herbert Xu   crypto: echainiv ...
4
5
   * This generator generates an IV based on a sequence number by multiplying
   * it with a salt and then encrypting it with the same key as used to encrypt
a10f554fa   Herbert Xu   crypto: echainiv ...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
   * the plain text.  This algorithm requires that the block size be equal
   * to the IV size.  It is mainly useful for CBC.
   *
   * This generator can only be used by algorithms where authentication
   * is performed after encryption (i.e., authenc).
   *
   * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License as published by the Free
   * Software Foundation; either version 2 of the License, or (at your option)
   * any later version.
   *
   */
d97de47ca   Herbert Xu   crypto: echainiv ...
20
  #include <crypto/internal/geniv.h>
a10f554fa   Herbert Xu   crypto: echainiv ...
21
  #include <crypto/scatterwalk.h>
0e8bff47f   Herbert Xu   crypto: echainiv ...
22
  #include <crypto/skcipher.h>
a10f554fa   Herbert Xu   crypto: echainiv ...
23
24
25
  #include <linux/err.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
a10f554fa   Herbert Xu   crypto: echainiv ...
26
  #include <linux/module.h>
53a5d5ddc   Herbert Xu   crypto: echainiv ...
27
  #include <linux/slab.h>
a10f554fa   Herbert Xu   crypto: echainiv ...
28
  #include <linux/string.h>
a10f554fa   Herbert Xu   crypto: echainiv ...
29
30
31
  static int echainiv_encrypt(struct aead_request *req)
  {
  	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
376e0d697   Herbert Xu   crypto: echainiv ...
32
  	struct aead_geniv_ctx *ctx = crypto_aead_ctx(geniv);
a10f554fa   Herbert Xu   crypto: echainiv ...
33
  	struct aead_request *subreq = aead_request_ctx(req);
53a5d5ddc   Herbert Xu   crypto: echainiv ...
34
35
  	__be64 nseqno;
  	u64 seqno;
a10f554fa   Herbert Xu   crypto: echainiv ...
36
  	u8 *info;
823655c99   Herbert Xu   crypto: echainiv ...
37
  	unsigned int ivsize = crypto_aead_ivsize(geniv);
a10f554fa   Herbert Xu   crypto: echainiv ...
38
  	int err;
823655c99   Herbert Xu   crypto: echainiv ...
39
40
  	if (req->cryptlen < ivsize)
  		return -EINVAL;
376e0d697   Herbert Xu   crypto: echainiv ...
41
  	aead_request_set_tfm(subreq, ctx->child);
a10f554fa   Herbert Xu   crypto: echainiv ...
42

a10f554fa   Herbert Xu   crypto: echainiv ...
43
  	info = req->iv;
a10f554fa   Herbert Xu   crypto: echainiv ...
44
  	if (req->src != req->dst) {
0e8bff47f   Herbert Xu   crypto: echainiv ...
45
  		SKCIPHER_REQUEST_ON_STACK(nreq, ctx->sknull);
a10f554fa   Herbert Xu   crypto: echainiv ...
46

0e8bff47f   Herbert Xu   crypto: echainiv ...
47
48
49
50
51
52
53
54
  		skcipher_request_set_tfm(nreq, ctx->sknull);
  		skcipher_request_set_callback(nreq, req->base.flags,
  					      NULL, NULL);
  		skcipher_request_set_crypt(nreq, req->src, req->dst,
  					   req->assoclen + req->cryptlen,
  					   NULL);
  
  		err = crypto_skcipher_encrypt(nreq);
a10f554fa   Herbert Xu   crypto: echainiv ...
55
56
57
  		if (err)
  			return err;
  	}
53a5d5ddc   Herbert Xu   crypto: echainiv ...
58
59
  	aead_request_set_callback(subreq, req->base.flags,
  				  req->base.complete, req->base.data);
a10f554fa   Herbert Xu   crypto: echainiv ...
60
  	aead_request_set_crypt(subreq, req->dst, req->dst,
5499b1a73   Herbert Xu   crypto: echainiv ...
61
62
  			       req->cryptlen, info);
  	aead_request_set_ad(subreq, req->assoclen);
a10f554fa   Herbert Xu   crypto: echainiv ...
63

53a5d5ddc   Herbert Xu   crypto: echainiv ...
64
65
66
  	memcpy(&nseqno, info + ivsize - 8, 8);
  	seqno = be64_to_cpu(nseqno);
  	memset(info, 0, ivsize);
a10f554fa   Herbert Xu   crypto: echainiv ...
67
  	scatterwalk_map_and_copy(info, req->dst, req->assoclen, ivsize, 1);
a10f554fa   Herbert Xu   crypto: echainiv ...
68

53a5d5ddc   Herbert Xu   crypto: echainiv ...
69
70
71
72
73
74
75
76
77
78
79
80
  	do {
  		u64 a;
  
  		memcpy(&a, ctx->salt + ivsize - 8, 8);
  
  		a |= 1;
  		a *= seqno;
  
  		memcpy(info + ivsize - 8, &a, 8);
  	} while ((ivsize -= 8));
  
  	return crypto_aead_encrypt(subreq);
a10f554fa   Herbert Xu   crypto: echainiv ...
81
  }
a10f554fa   Herbert Xu   crypto: echainiv ...
82
83
84
  static int echainiv_decrypt(struct aead_request *req)
  {
  	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
376e0d697   Herbert Xu   crypto: echainiv ...
85
  	struct aead_geniv_ctx *ctx = crypto_aead_ctx(geniv);
a10f554fa   Herbert Xu   crypto: echainiv ...
86
87
88
  	struct aead_request *subreq = aead_request_ctx(req);
  	crypto_completion_t compl;
  	void *data;
823655c99   Herbert Xu   crypto: echainiv ...
89
  	unsigned int ivsize = crypto_aead_ivsize(geniv);
5499b1a73   Herbert Xu   crypto: echainiv ...
90
  	if (req->cryptlen < ivsize)
823655c99   Herbert Xu   crypto: echainiv ...
91
  		return -EINVAL;
a10f554fa   Herbert Xu   crypto: echainiv ...
92

376e0d697   Herbert Xu   crypto: echainiv ...
93
  	aead_request_set_tfm(subreq, ctx->child);
a10f554fa   Herbert Xu   crypto: echainiv ...
94
95
96
  
  	compl = req->base.complete;
  	data = req->base.data;
a10f554fa   Herbert Xu   crypto: echainiv ...
97
98
99
  	aead_request_set_callback(subreq, req->base.flags, compl, data);
  	aead_request_set_crypt(subreq, req->src, req->dst,
  			       req->cryptlen - ivsize, req->iv);
374d4ad18   Herbert Xu   crypto: aead - Re...
100
  	aead_request_set_ad(subreq, req->assoclen + ivsize);
a10f554fa   Herbert Xu   crypto: echainiv ...
101
102
  
  	scatterwalk_map_and_copy(req->iv, req->src, req->assoclen, ivsize, 0);
a10f554fa   Herbert Xu   crypto: echainiv ...
103
104
105
  
  	return crypto_aead_decrypt(subreq);
  }
1e419c797   Herbert Xu   crypto: echainiv ...
106
107
  static int echainiv_aead_create(struct crypto_template *tmpl,
  				struct rtattr **tb)
a10f554fa   Herbert Xu   crypto: echainiv ...
108
109
110
111
  {
  	struct aead_instance *inst;
  	struct crypto_aead_spawn *spawn;
  	struct aead_alg *alg;
1e419c797   Herbert Xu   crypto: echainiv ...
112
  	int err;
a10f554fa   Herbert Xu   crypto: echainiv ...
113

1e419c797   Herbert Xu   crypto: echainiv ...
114
  	inst = aead_geniv_alloc(tmpl, tb, 0, 0);
a10f554fa   Herbert Xu   crypto: echainiv ...
115
116
  
  	if (IS_ERR(inst))
1e419c797   Herbert Xu   crypto: echainiv ...
117
  		return PTR_ERR(inst);
a10f554fa   Herbert Xu   crypto: echainiv ...
118

d97de47ca   Herbert Xu   crypto: echainiv ...
119
120
  	spawn = aead_instance_ctx(inst);
  	alg = crypto_spawn_aead_alg(spawn);
1e419c797   Herbert Xu   crypto: echainiv ...
121
  	err = -EINVAL;
53a5d5ddc   Herbert Xu   crypto: echainiv ...
122
  	if (inst->alg.ivsize & (sizeof(u64) - 1) || !inst->alg.ivsize)
1e419c797   Herbert Xu   crypto: echainiv ...
123
  		goto free_inst;
a10f554fa   Herbert Xu   crypto: echainiv ...
124

f261c5fbe   Herbert Xu   crypto: echainiv ...
125
  	inst->alg.encrypt = echainiv_encrypt;
a10f554fa   Herbert Xu   crypto: echainiv ...
126
  	inst->alg.decrypt = echainiv_decrypt;
376e0d697   Herbert Xu   crypto: echainiv ...
127
128
  	inst->alg.init = aead_init_geniv;
  	inst->alg.exit = aead_exit_geniv;
a10f554fa   Herbert Xu   crypto: echainiv ...
129

376e0d697   Herbert Xu   crypto: echainiv ...
130
  	inst->alg.base.cra_ctxsize = sizeof(struct aead_geniv_ctx);
9d03aee12   Herbert Xu   crypto: echainiv ...
131
  	inst->alg.base.cra_ctxsize += inst->alg.ivsize;
a10f554fa   Herbert Xu   crypto: echainiv ...
132

5499b1a73   Herbert Xu   crypto: echainiv ...
133
  	inst->free = aead_geniv_free;
1e419c797   Herbert Xu   crypto: echainiv ...
134
135
136
  	err = aead_register_instance(tmpl, inst);
  	if (err)
  		goto free_inst;
a10f554fa   Herbert Xu   crypto: echainiv ...
137
  out:
1e419c797   Herbert Xu   crypto: echainiv ...
138
139
140
141
142
  	return err;
  
  free_inst:
  	aead_geniv_free(inst);
  	goto out;
a10f554fa   Herbert Xu   crypto: echainiv ...
143
  }
a10f554fa   Herbert Xu   crypto: echainiv ...
144
145
146
  static void echainiv_free(struct crypto_instance *inst)
  {
  	aead_geniv_free(aead_instance(inst));
a10f554fa   Herbert Xu   crypto: echainiv ...
147
148
149
150
  }
  
  static struct crypto_template echainiv_tmpl = {
  	.name = "echainiv",
9fcc704df   Herbert Xu   crypto: echainiv ...
151
  	.create = echainiv_aead_create,
a10f554fa   Herbert Xu   crypto: echainiv ...
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  	.free = echainiv_free,
  	.module = THIS_MODULE,
  };
  
  static int __init echainiv_module_init(void)
  {
  	return crypto_register_template(&echainiv_tmpl);
  }
  
  static void __exit echainiv_module_exit(void)
  {
  	crypto_unregister_template(&echainiv_tmpl);
  }
  
  module_init(echainiv_module_init);
  module_exit(echainiv_module_exit);
  
  MODULE_LICENSE("GPL");
  MODULE_DESCRIPTION("Encrypted Chain IV Generator");
  MODULE_ALIAS_CRYPTO("echainiv");