From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751914AbcGMWB5 (ORCPT ); Wed, 13 Jul 2016 18:01:57 -0400 Received: from mail-vk0-f49.google.com ([209.85.213.49]:35366 "EHLO mail-vk0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751550AbcGMWBt (ORCPT ); Wed, 13 Jul 2016 18:01:49 -0400 MIME-Version: 1.0 In-Reply-To: <1468446964-22213-2-git-send-email-keescook@chromium.org> References: <1468446964-22213-1-git-send-email-keescook@chromium.org> <1468446964-22213-2-git-send-email-keescook@chromium.org> From: Andy Lutomirski Date: Wed, 13 Jul 2016 15:01:28 -0700 Message-ID: Subject: Re: [PATCH v2 01/11] mm: Implement stack frame object validation To: Kees Cook Cc: "linux-kernel@vger.kernel.org" , Rik van Riel , Casey Schaufler , PaX Team , Brad Spengler , Russell King , Catalin Marinas , Will Deacon , Ard Biesheuvel , Benjamin Herrenschmidt , Michael Ellerman , Tony Luck , Fenghua Yu , "David S. Miller" , X86 ML , Christoph Lameter , Pekka Enberg , David Rientjes , Joonsoo Kim , Andrew Morton , Andy Lutomirski , Borislav Petkov , Mathias Krause , Jan Kara , Vitaly Wool , Andrea Arcangeli , Dmitry Vyukov , Laura Abbott , "linux-arm-kernel@lists.infradead.org" , "linux-ia64@vger.kernel.org" , linuxppc-dev@lists.ozlabs.org, sparclinux@vger.kernel.org, linux-arch , "linux-mm@kvack.org" , "kernel-hardening@lists.openwall.com" , Josh Poimboeuf Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jul 13, 2016 at 2:55 PM, Kees Cook wrote: > This creates per-architecture function arch_within_stack_frames() that > should validate if a given object is contained by a kernel stack frame. > Initial implementation is on x86. > > This is based on code from PaX. > This, along with Josh's livepatch work, are two examples of unwinders that matter for correctness instead of just debugging. ISTM this should just use Josh's code directly once it's been written. --Andy