From: Josh Poimboeuf <jpoimboe@redhat.com>
To: mingo@kernel.org
Cc: linux-kernel@vger.kernel.org, live-patching@vger.kernel.org,
Michal Marek <mmarek@suse.cz>,
Peter Zijlstra <peterz@infradead.org>,
Andy Lutomirski <luto@kernel.org>, Borislav Petkov <bp@alien8.de>,
Linus Torvalds <torvalds@linux-foundation.org>,
Andi Kleen <andi@firstfloor.org>, Pedro Alves <palves@redhat.com>,
Namhyung Kim <namhyung@gmail.com>,
Bernd Petrovitsch <bernd@petrovitsch.priv.at>,
Chris J Arges <chris.j.arges@canonical.com>,
Andrew Morton <akpm@linux-foundation.org>,
Jiri Slaby <jslaby@suse.cz>,
David Vrabel <david.vrabel@citrix.com>,
Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
Boris Ostrovsky <boris.ostrovsky@oracle.com>,
Jeremy Fitzhardinge <jeremy@goop.org>,
Chris Wright <chrisw@sous-sol.org>,
Alok Kataria <akataria@vmware.com>,
Rusty Russell <rusty@rustcorp.com.au>,
Herbert Xu <herbert@gondor.apana.org.au>,
"David S. Miller" <davem@davemloft.net>,
Mathias Krause <minipli@ld-linux.so>, Pavel Machek <pavel@ucw.cz>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Len Brown <len.brown@intel.com>,
Matt Fleming <matt.fleming@intel.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
x86@kernel.org
Subject: Re: [PATCH v14 00/24] Compile-time stack metadata validation
Date: Wed, 4 Nov 2015 17:55:23 -0600 [thread overview]
Message-ID: <20151104235523.GB28254@treble.redhat.com> (raw)
In-Reply-To: <cover.1445443144.git.jpoimboe@redhat.com>
On Wed, Oct 21, 2015 at 11:11:39AM -0500, Josh Poimboeuf wrote:
> This is v14 of the compile-time stack metadata validation patch set,
> along with proposed fixes for many of the warnings it found. It's based
> on the tip/master branch.
>
> v13 can be found here:
>
> https://lkml.kernel.org/r/cover.1442935712.git.jpoimboe@redhat.com
>
> For more information about the motivation behind this patch set, and
> more details about what it does, see the patch 5 changelog and
> tools/stacktool/Documentation/stack-validation.txt.
>
> Patches 1-2 are some minor tools/ fixes in preparation for stacktool.
>
> Patches 3-7 add stacktool and some related macros.
>
> Patches 8-22 are some proposed fixes for several of the warnings
> reported by stacktool. They've been compile-tested and boot-tested in a
> VM, but I haven't attempted any meaningful testing for many of them.
>
> Patches 23-24 are some additional warning fixes from Chris J Arges.
>
> v14:
> - make tools/include/linux/list.h self-sufficient
> - create FRAME_OFFSET to allow 32-bit code to be able to access function
> arguments on the stack
> - add FRAME_OFFSET usage in crypto patch 14/24: "Create stack frames in
> aesni-intel_asm.S"
> - rename "index" -> "idx" to fix build with some compilers
Ping?
--
Josh
prev parent reply other threads:[~2015-11-04 23:55 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-21 16:11 Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 01/24] tools: Fix formatting of the "make -C tools" help message Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 02/24] tools: Make list.h self-sufficient Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 03/24] x86/asm: Frame pointer macro cleanup Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 04/24] x86/asm: Add C versions of frame pointer macros Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 05/24] x86/stacktool: Compile-time stack metadata validation Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 06/24] x86/stacktool: Add file and directory ignores Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 07/24] x86/stacktool: Add ignore macros Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 08/24] x86/xen: Add stack frame dependency to hypercall inline asm calls Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 09/24] x86/paravirt: Add stack frame dependency to PVOP " Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 10/24] x86/paravirt: Create a stack frame in PV_CALLEE_SAVE_REGS_THUNK Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 11/24] x86/amd: Set ELF function type for vide() Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 12/24] x86/reboot: Add ljmp instructions to stacktool whitelist Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 13/24] x86/xen: Add xen_cpuid() and xen_setup_gdt() to stacktool whitelists Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 14/24] x86/asm/crypto: Create stack frames in aesni-intel_asm.S Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 15/24] x86/asm/crypto: Move .Lbswap_mask data to .rodata section Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 16/24] x86/asm/crypto: Move jump_table " Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 17/24] x86/asm/crypto: Create stack frames in clmul_ghash_mul/update() Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 18/24] x86/asm/entry: Create stack frames in thunk functions Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 19/24] x86/asm/acpi: Create a stack frame in do_suspend_lowlevel() Josh Poimboeuf
2015-10-21 16:11 ` [PATCH v14 20/24] x86/asm: Create stack frames in rwsem functions Josh Poimboeuf
2015-10-21 16:12 ` [PATCH v14 21/24] x86/asm/efi: Create a stack frame in efi_call() Josh Poimboeuf
2015-10-21 16:12 ` [PATCH v14 22/24] x86/asm/power: Create stack frames in hibernate_asm_64.S Josh Poimboeuf
2015-10-21 16:12 ` [PATCH v14 23/24] x86/uaccess: Add stack frame output operand in get_user inline asm Josh Poimboeuf
2015-10-21 16:12 ` [PATCH v14 24/24] x86/stacktool: Ignore head_$(BITS) files Josh Poimboeuf
2015-10-26 21:54 ` [PATCH v14 00/24] Compile-time stack metadata validation Chris J Arges
2015-11-04 23:55 ` Josh Poimboeuf [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151104235523.GB28254@treble.redhat.com \
--to=jpoimboe@redhat.com \
--cc=akataria@vmware.com \
--cc=akpm@linux-foundation.org \
--cc=andi@firstfloor.org \
--cc=bernd@petrovitsch.priv.at \
--cc=boris.ostrovsky@oracle.com \
--cc=bp@alien8.de \
--cc=chris.j.arges@canonical.com \
--cc=chrisw@sous-sol.org \
--cc=davem@davemloft.net \
--cc=david.vrabel@citrix.com \
--cc=herbert@gondor.apana.org.au \
--cc=hpa@zytor.com \
--cc=jeremy@goop.org \
--cc=jslaby@suse.cz \
--cc=konrad.wilk@oracle.com \
--cc=len.brown@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=live-patching@vger.kernel.org \
--cc=luto@kernel.org \
--cc=matt.fleming@intel.com \
--cc=mingo@kernel.org \
--cc=mingo@redhat.com \
--cc=minipli@ld-linux.so \
--cc=mmarek@suse.cz \
--cc=namhyung@gmail.com \
--cc=palves@redhat.com \
--cc=pavel@ucw.cz \
--cc=peterz@infradead.org \
--cc=rjw@rjwysocki.net \
--cc=rusty@rustcorp.com.au \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome