mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	Since commit 8b41fc4454 ("kbuild: create modules.builtin without
Makefile.modbuiltin or tristate.conf"), MODULE_LICENSE declarations
are used to identify modules. As a consequence, uses of the macro
in non-modules will cause modprobe to misidentify their containing
object file as a module when it is not (false positives), and modprobe
might succeed rather than failing with a suitable error message.
So remove it in the files in this commit, none of which can be built as
modules.
Signed-off-by: Nick Alcock <nick.alcock@oracle.com>
Suggested-by: Luis Chamberlain <mcgrof@kernel.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: linux-modules@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
		
	
			
		
			
				
	
	
		
			71 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0 OR MIT
 | 
						|
/*
 | 
						|
 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 | 
						|
 *
 | 
						|
 * This is an implementation of the BLAKE2s hash and PRF functions.
 | 
						|
 *
 | 
						|
 * Information: https://blake2.net/
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include <crypto/internal/blake2s.h>
 | 
						|
#include <linux/types.h>
 | 
						|
#include <linux/string.h>
 | 
						|
#include <linux/kernel.h>
 | 
						|
#include <linux/module.h>
 | 
						|
#include <linux/init.h>
 | 
						|
#include <linux/bug.h>
 | 
						|
 | 
						|
static inline void blake2s_set_lastblock(struct blake2s_state *state)
 | 
						|
{
 | 
						|
	state->f[0] = -1;
 | 
						|
}
 | 
						|
 | 
						|
void blake2s_update(struct blake2s_state *state, const u8 *in, size_t inlen)
 | 
						|
{
 | 
						|
	const size_t fill = BLAKE2S_BLOCK_SIZE - state->buflen;
 | 
						|
 | 
						|
	if (unlikely(!inlen))
 | 
						|
		return;
 | 
						|
	if (inlen > fill) {
 | 
						|
		memcpy(state->buf + state->buflen, in, fill);
 | 
						|
		blake2s_compress(state, state->buf, 1, BLAKE2S_BLOCK_SIZE);
 | 
						|
		state->buflen = 0;
 | 
						|
		in += fill;
 | 
						|
		inlen -= fill;
 | 
						|
	}
 | 
						|
	if (inlen > BLAKE2S_BLOCK_SIZE) {
 | 
						|
		const size_t nblocks = DIV_ROUND_UP(inlen, BLAKE2S_BLOCK_SIZE);
 | 
						|
		blake2s_compress(state, in, nblocks - 1, BLAKE2S_BLOCK_SIZE);
 | 
						|
		in += BLAKE2S_BLOCK_SIZE * (nblocks - 1);
 | 
						|
		inlen -= BLAKE2S_BLOCK_SIZE * (nblocks - 1);
 | 
						|
	}
 | 
						|
	memcpy(state->buf + state->buflen, in, inlen);
 | 
						|
	state->buflen += inlen;
 | 
						|
}
 | 
						|
EXPORT_SYMBOL(blake2s_update);
 | 
						|
 | 
						|
void blake2s_final(struct blake2s_state *state, u8 *out)
 | 
						|
{
 | 
						|
	WARN_ON(IS_ENABLED(DEBUG) && !out);
 | 
						|
	blake2s_set_lastblock(state);
 | 
						|
	memset(state->buf + state->buflen, 0,
 | 
						|
	       BLAKE2S_BLOCK_SIZE - state->buflen); /* Padding */
 | 
						|
	blake2s_compress(state, state->buf, 1, state->buflen);
 | 
						|
	cpu_to_le32_array(state->h, ARRAY_SIZE(state->h));
 | 
						|
	memcpy(out, state->h, state->outlen);
 | 
						|
	memzero_explicit(state, sizeof(*state));
 | 
						|
}
 | 
						|
EXPORT_SYMBOL(blake2s_final);
 | 
						|
 | 
						|
static int __init blake2s_mod_init(void)
 | 
						|
{
 | 
						|
	if (!IS_ENABLED(CONFIG_CRYPTO_MANAGER_DISABLE_TESTS) &&
 | 
						|
	    WARN_ON(!blake2s_selftest()))
 | 
						|
		return -ENODEV;
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
module_init(blake2s_mod_init);
 | 
						|
MODULE_DESCRIPTION("BLAKE2s hash function");
 | 
						|
MODULE_AUTHOR("Jason A. Donenfeld <Jason@zx2c4.com>");
 |