sha256_glue.c 3.3 KB
Newer Older
1 2 3 4
/*
 * Glue code for the SHA256 Secure Hash Algorithm assembly implementation
 * using optimized ARM assembler and NEON instructions.
 *
5
 * Copyright © 2015 Google Inc.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * This file is based on sha256_ssse3_glue.c:
 *   Copyright (C) 2013 Intel Corporation
 *   Author: Tim Chen <tim.c.chen@linux.intel.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */

#include <crypto/internal/hash.h>
#include <linux/crypto.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/cryptohash.h>
#include <linux/types.h>
#include <linux/string.h>
#include <crypto/sha.h>
27
#include <crypto/sha256_base.h>
28 29
#include <asm/simd.h>
#include <asm/neon.h>
30

31 32 33
#include "sha256_glue.h"

asmlinkage void sha256_block_data_order(u32 *digest, const void *data,
34
					unsigned int num_blks);
35

36 37
int crypto_sha256_arm_update(struct shash_desc *desc, const u8 *data,
			     unsigned int len)
38
{
39 40
	/* make sure casting to sha256_block_fn() is safe */
	BUILD_BUG_ON(offsetof(struct sha256_state, state) != 0);
41

42 43
	return sha256_base_do_update(desc, data, len,
				(sha256_block_fn *)sha256_block_data_order);
44
}
45
EXPORT_SYMBOL(crypto_sha256_arm_update);
46 47 48

static int sha256_final(struct shash_desc *desc, u8 *out)
{
49 50 51
	sha256_base_do_finalize(desc,
				(sha256_block_fn *)sha256_block_data_order);
	return sha256_base_finish(desc, out);
52 53
}

54 55
int crypto_sha256_arm_finup(struct shash_desc *desc, const u8 *data,
			    unsigned int len, u8 *out)
56
{
57 58 59
	sha256_base_do_update(desc, data, len,
			      (sha256_block_fn *)sha256_block_data_order);
	return sha256_final(desc, out);
60
}
61
EXPORT_SYMBOL(crypto_sha256_arm_finup);
62 63 64

static struct shash_alg algs[] = { {
	.digestsize	=	SHA256_DIGEST_SIZE,
65 66
	.init		=	sha256_base_init,
	.update		=	crypto_sha256_arm_update,
67
	.final		=	sha256_final,
68
	.finup		=	crypto_sha256_arm_finup,
69 70 71 72 73 74 75 76 77 78
	.descsize	=	sizeof(struct sha256_state),
	.base		=	{
		.cra_name	=	"sha256",
		.cra_driver_name =	"sha256-asm",
		.cra_priority	=	150,
		.cra_blocksize	=	SHA256_BLOCK_SIZE,
		.cra_module	=	THIS_MODULE,
	}
}, {
	.digestsize	=	SHA224_DIGEST_SIZE,
79 80 81 82
	.init		=	sha224_base_init,
	.update		=	crypto_sha256_arm_update,
	.final		=	sha256_final,
	.finup		=	crypto_sha256_arm_finup,
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
	.descsize	=	sizeof(struct sha256_state),
	.base		=	{
		.cra_name	=	"sha224",
		.cra_driver_name =	"sha224-asm",
		.cra_priority	=	150,
		.cra_blocksize	=	SHA224_BLOCK_SIZE,
		.cra_module	=	THIS_MODULE,
	}
} };

static int __init sha256_mod_init(void)
{
	int res = crypto_register_shashes(algs, ARRAY_SIZE(algs));

	if (res < 0)
		return res;

	if (IS_ENABLED(CONFIG_KERNEL_MODE_NEON) && cpu_has_neon()) {
		res = crypto_register_shashes(sha256_neon_algs,
					      ARRAY_SIZE(sha256_neon_algs));

		if (res < 0)
			crypto_unregister_shashes(algs, ARRAY_SIZE(algs));
	}

	return res;
}

static void __exit sha256_mod_fini(void)
{
	crypto_unregister_shashes(algs, ARRAY_SIZE(algs));

	if (IS_ENABLED(CONFIG_KERNEL_MODE_NEON) && cpu_has_neon())
		crypto_unregister_shashes(sha256_neon_algs,
					  ARRAY_SIZE(sha256_neon_algs));
}

module_init(sha256_mod_init);
module_exit(sha256_mod_fini);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm (ARM), including NEON");

MODULE_ALIAS_CRYPTO("sha256");