4 * s390 implementation of the GHASH algorithm for GCM (Galois/Counter Mode).
6 * Copyright IBM Corp. 2011
7 * Author(s): Gerald Schaefer <gerald.schaefer@de.ibm.com>
10 #include <crypto/internal/hash.h>
11 #include <linux/module.h>
12 #include <linux/cpufeature.h>
13 #include <asm/cpacf.h>
15 #define GHASH_BLOCK_SIZE 16
16 #define GHASH_DIGEST_SIZE 16
19 u8 key
[GHASH_BLOCK_SIZE
];
22 struct ghash_desc_ctx
{
23 u8 icv
[GHASH_BLOCK_SIZE
];
24 u8 key
[GHASH_BLOCK_SIZE
];
25 u8 buffer
[GHASH_BLOCK_SIZE
];
29 static int ghash_init(struct shash_desc
*desc
)
31 struct ghash_desc_ctx
*dctx
= shash_desc_ctx(desc
);
32 struct ghash_ctx
*ctx
= crypto_shash_ctx(desc
->tfm
);
34 memset(dctx
, 0, sizeof(*dctx
));
35 memcpy(dctx
->key
, ctx
->key
, GHASH_BLOCK_SIZE
);
40 static int ghash_setkey(struct crypto_shash
*tfm
,
41 const u8
*key
, unsigned int keylen
)
43 struct ghash_ctx
*ctx
= crypto_shash_ctx(tfm
);
45 if (keylen
!= GHASH_BLOCK_SIZE
) {
46 crypto_shash_set_flags(tfm
, CRYPTO_TFM_RES_BAD_KEY_LEN
);
50 memcpy(ctx
->key
, key
, GHASH_BLOCK_SIZE
);
55 static int ghash_update(struct shash_desc
*desc
,
56 const u8
*src
, unsigned int srclen
)
58 struct ghash_desc_ctx
*dctx
= shash_desc_ctx(desc
);
60 u8
*buf
= dctx
->buffer
;
63 u8
*pos
= buf
+ (GHASH_BLOCK_SIZE
- dctx
->bytes
);
65 n
= min(srclen
, dctx
->bytes
);
73 cpacf_kimd(CPACF_KIMD_GHASH
, dctx
, buf
,
78 n
= srclen
& ~(GHASH_BLOCK_SIZE
- 1);
80 cpacf_kimd(CPACF_KIMD_GHASH
, dctx
, src
, n
);
86 dctx
->bytes
= GHASH_BLOCK_SIZE
- srclen
;
87 memcpy(buf
, src
, srclen
);
93 static int ghash_flush(struct ghash_desc_ctx
*dctx
)
95 u8
*buf
= dctx
->buffer
;
98 u8
*pos
= buf
+ (GHASH_BLOCK_SIZE
- dctx
->bytes
);
100 memset(pos
, 0, dctx
->bytes
);
101 cpacf_kimd(CPACF_KIMD_GHASH
, dctx
, buf
, GHASH_BLOCK_SIZE
);
108 static int ghash_final(struct shash_desc
*desc
, u8
*dst
)
110 struct ghash_desc_ctx
*dctx
= shash_desc_ctx(desc
);
113 ret
= ghash_flush(dctx
);
115 memcpy(dst
, dctx
->icv
, GHASH_BLOCK_SIZE
);
119 static struct shash_alg ghash_alg
= {
120 .digestsize
= GHASH_DIGEST_SIZE
,
122 .update
= ghash_update
,
123 .final
= ghash_final
,
124 .setkey
= ghash_setkey
,
125 .descsize
= sizeof(struct ghash_desc_ctx
),
128 .cra_driver_name
= "ghash-s390",
130 .cra_flags
= CRYPTO_ALG_TYPE_SHASH
,
131 .cra_blocksize
= GHASH_BLOCK_SIZE
,
132 .cra_ctxsize
= sizeof(struct ghash_ctx
),
133 .cra_module
= THIS_MODULE
,
137 static int __init
ghash_mod_init(void)
139 if (!cpacf_query_func(CPACF_KIMD
, CPACF_KIMD_GHASH
))
142 return crypto_register_shash(&ghash_alg
);
145 static void __exit
ghash_mod_exit(void)
147 crypto_unregister_shash(&ghash_alg
);
150 module_cpu_feature_match(MSA
, ghash_mod_init
);
151 module_exit(ghash_mod_exit
);
153 MODULE_ALIAS_CRYPTO("ghash");
155 MODULE_LICENSE("GPL");
156 MODULE_DESCRIPTION("GHASH Message Digest Algorithm, s390 implementation");