Loading...
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Cryptographic API.
4 *
5 * s390 generic implementation of the SHA Secure Hash Algorithms.
6 *
7 * Copyright IBM Corp. 2007
8 * Author(s): Jan Glauber (jang@de.ibm.com)
9 */
10
11#include <crypto/internal/hash.h>
12#include <linux/module.h>
13#include <asm/cpacf.h>
14#include "sha.h"
15
16int s390_sha_update(struct shash_desc *desc, const u8 *data, unsigned int len)
17{
18 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
19 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
20 unsigned int index, n;
21
22 /* how much is already in the buffer? */
23 index = ctx->count % bsize;
24 ctx->count += len;
25
26 if ((index + len) < bsize)
27 goto store;
28
29 /* process one stored block */
30 if (index) {
31 memcpy(ctx->buf + index, data, bsize - index);
32 cpacf_kimd(ctx->func, ctx->state, ctx->buf, bsize);
33 data += bsize - index;
34 len -= bsize - index;
35 index = 0;
36 }
37
38 /* process as many blocks as possible */
39 if (len >= bsize) {
40 n = (len / bsize) * bsize;
41 cpacf_kimd(ctx->func, ctx->state, data, n);
42 data += n;
43 len -= n;
44 }
45store:
46 if (len)
47 memcpy(ctx->buf + index , data, len);
48
49 return 0;
50}
51EXPORT_SYMBOL_GPL(s390_sha_update);
52
53static int s390_crypto_shash_parmsize(int func)
54{
55 switch (func) {
56 case CPACF_KLMD_SHA_1:
57 return 20;
58 case CPACF_KLMD_SHA_256:
59 return 32;
60 case CPACF_KLMD_SHA_512:
61 return 64;
62 case CPACF_KLMD_SHA3_224:
63 case CPACF_KLMD_SHA3_256:
64 case CPACF_KLMD_SHA3_384:
65 case CPACF_KLMD_SHA3_512:
66 return 200;
67 default:
68 return -EINVAL;
69 }
70}
71
72int s390_sha_final(struct shash_desc *desc, u8 *out)
73{
74 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
75 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
76 u64 bits;
77 unsigned int n, mbl_offset;
78
79 n = ctx->count % bsize;
80 bits = ctx->count * 8;
81 mbl_offset = s390_crypto_shash_parmsize(ctx->func) / sizeof(u32);
82 if (mbl_offset < 0)
83 return -EINVAL;
84
85 /* set total msg bit length (mbl) in CPACF parmblock */
86 switch (ctx->func) {
87 case CPACF_KLMD_SHA_1:
88 case CPACF_KLMD_SHA_256:
89 memcpy(ctx->state + mbl_offset, &bits, sizeof(bits));
90 break;
91 case CPACF_KLMD_SHA_512:
92 /*
93 * the SHA512 parmblock has a 128-bit mbl field, clear
94 * high-order u64 field, copy bits to low-order u64 field
95 */
96 memset(ctx->state + mbl_offset, 0x00, sizeof(bits));
97 mbl_offset += sizeof(u64) / sizeof(u32);
98 memcpy(ctx->state + mbl_offset, &bits, sizeof(bits));
99 break;
100 case CPACF_KLMD_SHA3_224:
101 case CPACF_KLMD_SHA3_256:
102 case CPACF_KLMD_SHA3_384:
103 case CPACF_KLMD_SHA3_512:
104 break;
105 default:
106 return -EINVAL;
107 }
108
109 cpacf_klmd(ctx->func, ctx->state, ctx->buf, n);
110
111 /* copy digest to out */
112 memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
113 /* wipe context */
114 memset(ctx, 0, sizeof *ctx);
115
116 return 0;
117}
118EXPORT_SYMBOL_GPL(s390_sha_final);
119
120MODULE_LICENSE("GPL");
121MODULE_DESCRIPTION("s390 SHA cipher common functions");
1/*
2 * Cryptographic API.
3 *
4 * s390 generic implementation of the SHA Secure Hash Algorithms.
5 *
6 * Copyright IBM Corp. 2007
7 * Author(s): Jan Glauber (jang@de.ibm.com)
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 */
15
16#include <crypto/internal/hash.h>
17#include <linux/module.h>
18#include "sha.h"
19#include "crypt_s390.h"
20
21int s390_sha_update(struct shash_desc *desc, const u8 *data, unsigned int len)
22{
23 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
24 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
25 unsigned int index;
26 int ret;
27
28 /* how much is already in the buffer? */
29 index = ctx->count & (bsize - 1);
30 ctx->count += len;
31
32 if ((index + len) < bsize)
33 goto store;
34
35 /* process one stored block */
36 if (index) {
37 memcpy(ctx->buf + index, data, bsize - index);
38 ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, bsize);
39 if (ret != bsize)
40 return -EIO;
41 data += bsize - index;
42 len -= bsize - index;
43 index = 0;
44 }
45
46 /* process as many blocks as possible */
47 if (len >= bsize) {
48 ret = crypt_s390_kimd(ctx->func, ctx->state, data,
49 len & ~(bsize - 1));
50 if (ret != (len & ~(bsize - 1)))
51 return -EIO;
52 data += ret;
53 len -= ret;
54 }
55store:
56 if (len)
57 memcpy(ctx->buf + index , data, len);
58
59 return 0;
60}
61EXPORT_SYMBOL_GPL(s390_sha_update);
62
63int s390_sha_final(struct shash_desc *desc, u8 *out)
64{
65 struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
66 unsigned int bsize = crypto_shash_blocksize(desc->tfm);
67 u64 bits;
68 unsigned int index, end, plen;
69 int ret;
70
71 /* SHA-512 uses 128 bit padding length */
72 plen = (bsize > SHA256_BLOCK_SIZE) ? 16 : 8;
73
74 /* must perform manual padding */
75 index = ctx->count & (bsize - 1);
76 end = (index < bsize - plen) ? bsize : (2 * bsize);
77
78 /* start pad with 1 */
79 ctx->buf[index] = 0x80;
80 index++;
81
82 /* pad with zeros */
83 memset(ctx->buf + index, 0x00, end - index - 8);
84
85 /*
86 * Append message length. Well, SHA-512 wants a 128 bit length value,
87 * nevertheless we use u64, should be enough for now...
88 */
89 bits = ctx->count * 8;
90 memcpy(ctx->buf + end - 8, &bits, sizeof(bits));
91
92 ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, end);
93 if (ret != end)
94 return -EIO;
95
96 /* copy digest to out */
97 memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
98 /* wipe context */
99 memset(ctx, 0, sizeof *ctx);
100
101 return 0;
102}
103EXPORT_SYMBOL_GPL(s390_sha_final);
104
105MODULE_LICENSE("GPL");
106MODULE_DESCRIPTION("s390 SHA cipher common functions");