blob: ccf8633c4f6580f509cff71c1bce08179037a65c [file] [log] [blame]
Jan Glauber0a497c172006-01-06 00:19:18 -08001/*
2 * Cryptographic API.
3 *
4 * s390 implementation of the SHA256 Secure Hash Algorithm.
5 *
6 * s390 Version:
Jan Glauber86aa9fc2007-02-05 21:18:14 +01007 * Copyright IBM Corp. 2005,2007
Jan Glauber0a497c172006-01-06 00:19:18 -08008 * Author(s): Jan Glauber (jang@de.ibm.com)
9 *
Sebastian Siewiorad5d2782007-10-08 11:45:10 +080010 * Derived from "crypto/sha256_generic.c"
Jan Glauber0a497c172006-01-06 00:19:18 -080011 * and "arch/s390/crypto/sha1_s390.c"
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the Free
15 * Software Foundation; either version 2 of the License, or (at your option)
16 * any later version.
17 *
18 */
19#include <linux/init.h>
20#include <linux/module.h>
21#include <linux/crypto.h>
Jan Glauber5265eeb2007-10-09 22:43:13 +080022#include <crypto/sha.h>
Jan Glauber0a497c172006-01-06 00:19:18 -080023
24#include "crypt_s390.h"
25
Jan Glauber0a497c172006-01-06 00:19:18 -080026struct s390_sha256_ctx {
Jan Glauber131a3952007-04-27 16:01:54 +020027 u64 count; /* message length */
Jan Glauber0a497c172006-01-06 00:19:18 -080028 u32 state[8];
29 u8 buf[2 * SHA256_BLOCK_SIZE];
30};
31
Herbert Xu6c2bb982006-05-16 22:09:29 +100032static void sha256_init(struct crypto_tfm *tfm)
Jan Glauber0a497c172006-01-06 00:19:18 -080033{
Herbert Xu6c2bb982006-05-16 22:09:29 +100034 struct s390_sha256_ctx *sctx = crypto_tfm_ctx(tfm);
Jan Glauber0a497c172006-01-06 00:19:18 -080035
Jan Glauber5265eeb2007-10-09 22:43:13 +080036 sctx->state[0] = SHA256_H0;
37 sctx->state[1] = SHA256_H1;
38 sctx->state[2] = SHA256_H2;
39 sctx->state[3] = SHA256_H3;
40 sctx->state[4] = SHA256_H4;
41 sctx->state[5] = SHA256_H5;
42 sctx->state[6] = SHA256_H6;
43 sctx->state[7] = SHA256_H7;
Jan Glauber0a497c172006-01-06 00:19:18 -080044 sctx->count = 0;
Jan Glauber0a497c172006-01-06 00:19:18 -080045}
46
Herbert Xu6c2bb982006-05-16 22:09:29 +100047static void sha256_update(struct crypto_tfm *tfm, const u8 *data,
48 unsigned int len)
Jan Glauber0a497c172006-01-06 00:19:18 -080049{
Herbert Xu6c2bb982006-05-16 22:09:29 +100050 struct s390_sha256_ctx *sctx = crypto_tfm_ctx(tfm);
Jan Glauber0a497c172006-01-06 00:19:18 -080051 unsigned int index;
Jan Glauber7ffbc9d2006-01-14 13:20:56 -080052 int ret;
Jan Glauber0a497c172006-01-06 00:19:18 -080053
54 /* how much is already in the buffer? */
Jan Glauber131a3952007-04-27 16:01:54 +020055 index = sctx->count & 0x3f;
Jan Glauber0a497c172006-01-06 00:19:18 -080056
Jan Glauber131a3952007-04-27 16:01:54 +020057 sctx->count += len;
Jan Glauber0a497c172006-01-06 00:19:18 -080058
Jan Glauber7ffbc9d2006-01-14 13:20:56 -080059 if ((index + len) < SHA256_BLOCK_SIZE)
60 goto store;
61
62 /* process one stored block */
63 if (index) {
Jan Glauber0a497c172006-01-06 00:19:18 -080064 memcpy(sctx->buf + index, data, SHA256_BLOCK_SIZE - index);
Jan Glauber7ffbc9d2006-01-14 13:20:56 -080065 ret = crypt_s390_kimd(KIMD_SHA_256, sctx->state, sctx->buf,
66 SHA256_BLOCK_SIZE);
67 BUG_ON(ret != SHA256_BLOCK_SIZE);
Jan Glauber0a497c172006-01-06 00:19:18 -080068 data += SHA256_BLOCK_SIZE - index;
69 len -= SHA256_BLOCK_SIZE - index;
70 }
71
Jan Glauber7ffbc9d2006-01-14 13:20:56 -080072 /* process as many blocks as possible */
73 if (len >= SHA256_BLOCK_SIZE) {
74 ret = crypt_s390_kimd(KIMD_SHA_256, sctx->state, data,
75 len & ~(SHA256_BLOCK_SIZE - 1));
76 BUG_ON(ret != (len & ~(SHA256_BLOCK_SIZE - 1)));
77 data += ret;
78 len -= ret;
79 }
80
81store:
Jan Glauber0a497c172006-01-06 00:19:18 -080082 /* anything left? */
83 if (len)
84 memcpy(sctx->buf + index , data, len);
85}
86
Jan Glauber131a3952007-04-27 16:01:54 +020087/* Add padding and return the message digest */
88static void sha256_final(struct crypto_tfm *tfm, u8 *out)
Jan Glauber0a497c172006-01-06 00:19:18 -080089{
Jan Glauber131a3952007-04-27 16:01:54 +020090 struct s390_sha256_ctx *sctx = crypto_tfm_ctx(tfm);
91 u64 bits;
92 unsigned int index, end;
93 int ret;
Jan Glauber0a497c172006-01-06 00:19:18 -080094
Jan Glauber131a3952007-04-27 16:01:54 +020095 /* must perform manual padding */
96 index = sctx->count & 0x3f;
97 end = (index < 56) ? SHA256_BLOCK_SIZE : (2 * SHA256_BLOCK_SIZE);
Jan Glauber0a497c172006-01-06 00:19:18 -080098
99 /* start pad with 1 */
100 sctx->buf[index] = 0x80;
101
102 /* pad with zeros */
103 index++;
104 memset(sctx->buf + index, 0x00, end - index - 8);
105
106 /* append message length */
Jan Glauber131a3952007-04-27 16:01:54 +0200107 bits = sctx->count * 8;
108 memcpy(sctx->buf + end - 8, &bits, sizeof(bits));
Jan Glauber0a497c172006-01-06 00:19:18 -0800109
Jan Glauber131a3952007-04-27 16:01:54 +0200110 ret = crypt_s390_kimd(KIMD_SHA_256, sctx->state, sctx->buf, end);
111 BUG_ON(ret != end);
Jan Glauber0a497c172006-01-06 00:19:18 -0800112
113 /* copy digest to out */
114 memcpy(out, sctx->state, SHA256_DIGEST_SIZE);
115
116 /* wipe context */
117 memset(sctx, 0, sizeof *sctx);
118}
119
120static struct crypto_alg alg = {
121 .cra_name = "sha256",
Herbert Xu65b75c32006-08-21 21:18:50 +1000122 .cra_driver_name = "sha256-s390",
123 .cra_priority = CRYPT_S390_PRIORITY,
Jan Glauber0a497c172006-01-06 00:19:18 -0800124 .cra_flags = CRYPTO_ALG_TYPE_DIGEST,
125 .cra_blocksize = SHA256_BLOCK_SIZE,
126 .cra_ctxsize = sizeof(struct s390_sha256_ctx),
127 .cra_module = THIS_MODULE,
128 .cra_list = LIST_HEAD_INIT(alg.cra_list),
129 .cra_u = { .digest = {
130 .dia_digestsize = SHA256_DIGEST_SIZE,
Jan Glauber7ffbc9d2006-01-14 13:20:56 -0800131 .dia_init = sha256_init,
132 .dia_update = sha256_update,
133 .dia_final = sha256_final } }
Jan Glauber0a497c172006-01-06 00:19:18 -0800134};
135
136static int init(void)
137{
Jan Glauber0a497c172006-01-06 00:19:18 -0800138 if (!crypt_s390_func_available(KIMD_SHA_256))
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100139 return -EOPNOTSUPP;
Jan Glauber0a497c172006-01-06 00:19:18 -0800140
Jan Glauber86aa9fc2007-02-05 21:18:14 +0100141 return crypto_register_alg(&alg);
Jan Glauber0a497c172006-01-06 00:19:18 -0800142}
143
144static void __exit fini(void)
145{
146 crypto_unregister_alg(&alg);
147}
148
149module_init(init);
150module_exit(fini);
151
152MODULE_ALIAS("sha256");
153
154MODULE_LICENSE("GPL");
155MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm");