Blame view

crypto/ghash-generic.c 3.49 KB
2cdc6899a   Huang Ying   crypto: ghash - A...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * GHASH: digest algorithm for GCM (Galois/Counter Mode).
   *
   * Copyright (c) 2007 Nokia Siemens Networks - Mikko Herranen <mh1@iki.fi>
   * Copyright (c) 2009 Intel Corp.
   *   Author: Huang Ying <ying.huang@intel.com>
   *
   * The algorithm implementation is copied from gcm.c.
   *
   * This program is free software; you can redistribute it and/or modify it
   * under the terms of the GNU General Public License version 2 as published
   * by the Free Software Foundation.
   */
  
  #include <crypto/algapi.h>
  #include <crypto/gf128mul.h>
a397ba829   Marcelo Cerri   crypto: ghash-gen...
17
  #include <crypto/ghash.h>
2cdc6899a   Huang Ying   crypto: ghash - A...
18
19
20
21
22
  #include <crypto/internal/hash.h>
  #include <linux/crypto.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
  #include <linux/module.h>
2cdc6899a   Huang Ying   crypto: ghash - A...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  static int ghash_init(struct shash_desc *desc)
  {
  	struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
  
  	memset(dctx, 0, sizeof(*dctx));
  
  	return 0;
  }
  
  static int ghash_setkey(struct crypto_shash *tfm,
  			const u8 *key, unsigned int keylen)
  {
  	struct ghash_ctx *ctx = crypto_shash_ctx(tfm);
  
  	if (keylen != GHASH_BLOCK_SIZE) {
  		crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
  		return -EINVAL;
  	}
  
  	if (ctx->gf128)
  		gf128mul_free_4k(ctx->gf128);
  	ctx->gf128 = gf128mul_init_4k_lle((be128 *)key);
  	if (!ctx->gf128)
  		return -ENOMEM;
  
  	return 0;
  }
  
  static int ghash_update(struct shash_desc *desc,
  			 const u8 *src, unsigned int srclen)
  {
  	struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
  	struct ghash_ctx *ctx = crypto_shash_ctx(desc->tfm);
  	u8 *dst = dctx->buffer;
  
  	if (dctx->bytes) {
  		int n = min(srclen, dctx->bytes);
  		u8 *pos = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
  
  		dctx->bytes -= n;
  		srclen -= n;
  
  		while (n--)
  			*pos++ ^= *src++;
  
  		if (!dctx->bytes)
  			gf128mul_4k_lle((be128 *)dst, ctx->gf128);
  	}
  
  	while (srclen >= GHASH_BLOCK_SIZE) {
  		crypto_xor(dst, src, GHASH_BLOCK_SIZE);
  		gf128mul_4k_lle((be128 *)dst, ctx->gf128);
  		src += GHASH_BLOCK_SIZE;
  		srclen -= GHASH_BLOCK_SIZE;
  	}
  
  	if (srclen) {
  		dctx->bytes = GHASH_BLOCK_SIZE - srclen;
  		while (srclen--)
  			*dst++ ^= *src++;
  	}
  
  	return 0;
  }
  
  static void ghash_flush(struct ghash_ctx *ctx, struct ghash_desc_ctx *dctx)
  {
  	u8 *dst = dctx->buffer;
  
  	if (dctx->bytes) {
  		u8 *tmp = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
  
  		while (dctx->bytes--)
  			*tmp++ ^= 0;
  
  		gf128mul_4k_lle((be128 *)dst, ctx->gf128);
  	}
  
  	dctx->bytes = 0;
  }
  
  static int ghash_final(struct shash_desc *desc, u8 *dst)
  {
  	struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
  	struct ghash_ctx *ctx = crypto_shash_ctx(desc->tfm);
  	u8 *buf = dctx->buffer;
  
  	ghash_flush(ctx, dctx);
  	memcpy(dst, buf, GHASH_BLOCK_SIZE);
  
  	return 0;
  }
  
  static void ghash_exit_tfm(struct crypto_tfm *tfm)
  {
  	struct ghash_ctx *ctx = crypto_tfm_ctx(tfm);
  	if (ctx->gf128)
  		gf128mul_free_4k(ctx->gf128);
  }
  
  static struct shash_alg ghash_alg = {
  	.digestsize	= GHASH_DIGEST_SIZE,
  	.init		= ghash_init,
  	.update		= ghash_update,
  	.final		= ghash_final,
  	.setkey		= ghash_setkey,
  	.descsize	= sizeof(struct ghash_desc_ctx),
  	.base		= {
  		.cra_name		= "ghash",
  		.cra_driver_name	= "ghash-generic",
  		.cra_priority		= 100,
2cdc6899a   Huang Ying   crypto: ghash - A...
134
135
136
  		.cra_blocksize		= GHASH_BLOCK_SIZE,
  		.cra_ctxsize		= sizeof(struct ghash_ctx),
  		.cra_module		= THIS_MODULE,
2cdc6899a   Huang Ying   crypto: ghash - A...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  		.cra_exit		= ghash_exit_tfm,
  	},
  };
  
  static int __init ghash_mod_init(void)
  {
  	return crypto_register_shash(&ghash_alg);
  }
  
  static void __exit ghash_mod_exit(void)
  {
  	crypto_unregister_shash(&ghash_alg);
  }
  
  module_init(ghash_mod_init);
  module_exit(ghash_mod_exit);
  
  MODULE_LICENSE("GPL");
  MODULE_DESCRIPTION("GHASH Message Digest Algorithm");
5d26a105b   Kees Cook   crypto: prefix mo...
156
  MODULE_ALIAS_CRYPTO("ghash");
3e14dcf7c   Mathias Krause   crypto: add missi...
157
  MODULE_ALIAS_CRYPTO("ghash-generic");