From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753726AbcEYKqW (ORCPT ); Wed, 25 May 2016 06:46:22 -0400 Received: from mx2.suse.de ([195.135.220.15]:51820 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750765AbcEYKqV (ORCPT ); Wed, 25 May 2016 06:46:21 -0400 Subject: Re: [PATCH v9 0/4] Introduce GCC plugin infrastructure To: Kees Cook , Emese Revfy References: <20160524000719.b456ed0cd2aafacb4e53f177@gmail.com> Cc: linux-kbuild , PaX Team , Brad Spengler , "kernel-hardening@lists.openwall.com" , Rasmus Villemoes , Fengguang Wu , Dmitry Vyukov , LKML , David Brown , Masahiro Yamada From: Michal Marek Message-ID: <57458279.6080009@suse.com> Date: Wed, 25 May 2016 12:46:17 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2016-05-24 19:04, Kees Cook wrote: > On Mon, May 23, 2016 at 3:07 PM, Emese Revfy wrote: >> This patch set introduce the GCC plugin infrastructure with examples for testing >> and documentation. >> >> GCC plugins are loadable modules that provide extra features to the compiler. >> They are useful for runtime instrumentation and static analysis. >> >> The infrastructure supports all gcc versions from 4.5 to 6.0, building >> out-of-tree modules and building in a separate directory. Cross-compilation >> is supported too but currently only the x86, arm, arm64 and uml architectures enable plugins. >> >> This infrastructure was ported from grsecurity/PaX. Based on work created by the PaX Team. >> It is a CII project supported by the Linux Foundation. >> >> Emese Revfy (4): >> Shared library support >> GCC plugin infrastructure >> Add Cyclomatic complexity plugin >> Add sancov plugin > > Michal, once -rc1 is out, can you carry this for -next? Yes. Michal