From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lb0-f198.google.com (mail-lb0-f198.google.com [209.85.217.198]) by kanga.kvack.org (Postfix) with ESMTP id A72946B007E for ; Tue, 14 Jun 2016 18:11:09 -0400 (EDT) Received: by mail-lb0-f198.google.com with SMTP id wy7so1417800lbb.0 for ; Tue, 14 Jun 2016 15:11:09 -0700 (PDT) Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com. [2a00:1450:400c:c09::244]) by mx.google.com with ESMTPS id mb8si4866663wjb.202.2016.06.14.15.11.07 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 14 Jun 2016 15:11:07 -0700 (PDT) Received: by mail-wm0-x244.google.com with SMTP id m124so1619716wme.3 for ; Tue, 14 Jun 2016 15:11:07 -0700 (PDT) Date: Wed, 15 Jun 2016 00:17:54 +0200 From: Emese Revfy Subject: [PATCH v3 0/4] Introduce the latent_entropy gcc plugin Message-Id: <20160615001754.f9e986cf961d1466f5e086dc@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: kernel-hardening@lists.openwall.com Cc: pageexec@freemail.hu, spender@grsecurity.net, mmarek@suse.com, keescook@chromium.org, linux-kernel@vger.kernel.org, yamada.masahiro@socionext.com, linux-kbuild@vger.kernel.org, tytso@mit.edu, akpm@linux-foundation.org, linux-mm@kvack.org, axboe@kernel.dk, viro@zeniv.linux.org.uk, paulmck@linux.vnet.ibm.com, mingo@redhat.com, tglx@linutronix.de, bart.vanassche@sandisk.com, davem@davemloft.net I would like to introduce the latent_entropy gcc plugin. This plugin mitigates the problem of the kernel having too little entropy during and after boot for generating crypto keys. This plugin mixes random values into the latent_entropy global variable in functions marked by the __latent_entropy attribute. The value of this global variable is added to the kernel entropy pool to increase the entropy. It is a CII project supported by the Linux Foundation. The latent_entropy plugin was ported from grsecurity/PaX originally written by the PaX Team. You can find more about the plugin here: https://grsecurity.net/pipermail/grsecurity/2012-July/001093.html The plugin supports all gcc version from 4.5 to 6.0. I do some changes above the PaX version. The important one is mixing the stack pointer into the global variable too. You can find more about the changes here: https://github.com/ephox-gcc-plugins/latent_entropy This patch set is based on the "Introduce GCC plugin infrastructure" patch set (v9 next-20160520). Emese Revfy (4): Add support for passing gcc plugin arguments Add the latent_entropy gcc plugin Mark functions with the latent_entropy attribute Add the extra_latent_entropy kernel parameter Changes from v2: * Moved the passing of gcc plugin arguments into a separate patch (Suggested-by: Kees Cook ) * Mix the global entropy variable with the stack pointer (latent_entropy_plugin.c) * Handle tail calls (latent_entropy_plugin.c) * Fix some indentation related warnings suggested by checkpatch.pl (latent_entropy_plugin.c) * Commented some latent_entropy plugin code (Suggested-by: Kees Cook ) Changes from v1: * Remove unnecessary ifdefs (Suggested-by: Kees Cook ) * Separate the two definitions of add_latent_entropy() (Suggested-by: Kees Cook ) * Removed unnecessary global variable (latent_entropy_plugin.c) * About the latent_entropy gcc attribute (latent_entropy_plugin.c) * Measure the boot time performance impact of the latent_entropy plugin (arch/Kconfig) --- Documentation/kernel-parameters.txt | 5 + arch/Kconfig | 23 ++ arch/powerpc/kernel/Makefile | 8 +- block/blk-softirq.c | 2 +- drivers/char/random.c | 6 +- fs/namespace.c | 2 +- include/linux/compiler-gcc.h | 7 + include/linux/compiler.h | 4 + include/linux/fdtable.h | 2 +- include/linux/genhd.h | 2 +- include/linux/init.h | 4 +- include/linux/random.h | 14 +- init/main.c | 1 + kernel/fork.c | 5 +- kernel/rcu/tiny.c | 2 +- kernel/rcu/tree.c | 2 +- kernel/sched/fair.c | 2 +- kernel/softirq.c | 4 +- kernel/time/timer.c | 2 +- lib/irq_poll.c | 2 +- lib/random32.c | 2 +- mm/page_alloc.c | 30 ++ net/core/dev.c | 4 +- scripts/Makefile.gcc-plugins | 10 +- scripts/gcc-plugins/Makefile | 1 + scripts/gcc-plugins/latent_entropy_plugin.c | 597 ++++++++++++++++++++++++++++ 26 files changed, 714 insertions(+), 29 deletions(-) -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org