blob: 98c896b86dcd2a7c66e1025c56bd1c12eb02e266 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Cryptographic API.
3 *
Jan Glauberc1e26e12006-01-06 00:19:17 -08004 * s390 implementation of the SHA1 Secure Hash Algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Derived from cryptoapi implementation, adapted for in-place
7 * scatterlist interface. Originally based on the public domain
8 * implementation written by Steve Reid.
9 *
10 * s390 Version:
11 * Copyright (C) 2003 IBM Deutschland GmbH, IBM Corporation
12 * Author(s): Thomas Spatzier (tspat@de.ibm.com)
13 *
14 * Derived from "crypto/sha1.c"
15 * Copyright (c) Alan Smithee.
16 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
17 * Copyright (c) Jean-Francois Dive <jef@linuxbe.org>
18 *
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the Free
21 * Software Foundation; either version 2 of the License, or (at your option)
22 * any later version.
23 *
24 */
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/mm.h>
28#include <linux/crypto.h>
29#include <asm/scatterlist.h>
30#include <asm/byteorder.h>
Jan Glauberc1e26e12006-01-06 00:19:17 -080031#include "crypt_s390.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define SHA1_DIGEST_SIZE 20
34#define SHA1_BLOCK_SIZE 64
35
Jan Glauberc1e26e12006-01-06 00:19:17 -080036struct crypt_s390_sha1_ctx {
37 u64 count;
38 u32 state[5];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 u32 buf_len;
Jan Glauberc1e26e12006-01-06 00:19:17 -080040 u8 buffer[2 * SHA1_BLOCK_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
43static void
44sha1_init(void *ctx)
45{
Jan Glauberc1e26e12006-01-06 00:19:17 -080046 static const struct crypt_s390_sha1_ctx initstate = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .state = {
48 0x67452301,
49 0xEFCDAB89,
50 0x98BADCFE,
51 0x10325476,
52 0xC3D2E1F0
53 },
54 };
55 memcpy(ctx, &initstate, sizeof(initstate));
56}
57
58static void
59sha1_update(void *ctx, const u8 *data, unsigned int len)
60{
Jan Glauberc1e26e12006-01-06 00:19:17 -080061 struct crypt_s390_sha1_ctx *sctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 long imd_len;
63
64 sctx = ctx;
65 sctx->count += len * 8; //message bit length
66
67 //anything in buffer yet? -> must be completed
68 if (sctx->buf_len && (sctx->buf_len + len) >= SHA1_BLOCK_SIZE) {
69 //complete full block and hash
70 memcpy(sctx->buffer + sctx->buf_len, data,
71 SHA1_BLOCK_SIZE - sctx->buf_len);
Jan Glauberc1e26e12006-01-06 00:19:17 -080072 crypt_s390_kimd(KIMD_SHA_1, sctx->state, sctx->buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 SHA1_BLOCK_SIZE);
74 data += SHA1_BLOCK_SIZE - sctx->buf_len;
75 len -= SHA1_BLOCK_SIZE - sctx->buf_len;
76 sctx->buf_len = 0;
77 }
78
79 //rest of data contains full blocks?
80 imd_len = len & ~0x3ful;
81 if (imd_len){
Jan Glauberc1e26e12006-01-06 00:19:17 -080082 crypt_s390_kimd(KIMD_SHA_1, sctx->state, data, imd_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 data += imd_len;
84 len -= imd_len;
85 }
86 //anything left? store in buffer
87 if (len){
88 memcpy(sctx->buffer + sctx->buf_len , data, len);
89 sctx->buf_len += len;
90 }
91}
92
93
94static void
Jan Glauberc1e26e12006-01-06 00:19:17 -080095pad_message(struct crypt_s390_sha1_ctx* sctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 int index;
98
99 index = sctx->buf_len;
100 sctx->buf_len = (sctx->buf_len < 56)?
101 SHA1_BLOCK_SIZE:2 * SHA1_BLOCK_SIZE;
102 //start pad with 1
103 sctx->buffer[index] = 0x80;
104 //pad with zeros
105 index++;
106 memset(sctx->buffer + index, 0x00, sctx->buf_len - index);
107 //append length
108 memcpy(sctx->buffer + sctx->buf_len - 8, &sctx->count,
109 sizeof sctx->count);
110}
111
112/* Add padding and return the message digest. */
113static void
114sha1_final(void* ctx, u8 *out)
115{
Jan Glauberc1e26e12006-01-06 00:19:17 -0800116 struct crypt_s390_sha1_ctx *sctx = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 //must perform manual padding
119 pad_message(sctx);
Jan Glauberc1e26e12006-01-06 00:19:17 -0800120 crypt_s390_kimd(KIMD_SHA_1, sctx->state, sctx->buffer, sctx->buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 //copy digest to out
122 memcpy(out, sctx->state, SHA1_DIGEST_SIZE);
123 /* Wipe context */
124 memset(sctx, 0, sizeof *sctx);
125}
126
127static struct crypto_alg alg = {
128 .cra_name = "sha1",
129 .cra_flags = CRYPTO_ALG_TYPE_DIGEST,
130 .cra_blocksize = SHA1_BLOCK_SIZE,
Jan Glauberc1e26e12006-01-06 00:19:17 -0800131 .cra_ctxsize = sizeof(struct crypt_s390_sha1_ctx),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .cra_module = THIS_MODULE,
133 .cra_list = LIST_HEAD_INIT(alg.cra_list),
134 .cra_u = { .digest = {
135 .dia_digestsize = SHA1_DIGEST_SIZE,
136 .dia_init = sha1_init,
137 .dia_update = sha1_update,
138 .dia_final = sha1_final } }
139};
140
141static int
142init(void)
143{
144 int ret = -ENOSYS;
145
Jan Glauberc1e26e12006-01-06 00:19:17 -0800146 if (crypt_s390_func_available(KIMD_SHA_1)){
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ret = crypto_register_alg(&alg);
148 if (ret == 0){
Jan Glauberc1e26e12006-01-06 00:19:17 -0800149 printk(KERN_INFO "crypt_s390: sha1_s390 loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 }
152 return ret;
153}
154
155static void __exit
156fini(void)
157{
158 crypto_unregister_alg(&alg);
159}
160
161module_init(init);
162module_exit(fini);
163
164MODULE_ALIAS("sha1");
165
166MODULE_LICENSE("GPL");
167MODULE_DESCRIPTION("SHA1 Secure Hash Algorithm");