Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756262Ab2BUWsK (ORCPT ); Tue, 21 Feb 2012 17:48:10 -0500 Received: from mail-lpp01m010-f46.google.com ([209.85.215.46]:55942 "EHLO mail-lpp01m010-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752245Ab2BUWsI convert rfc822-to-8bit (ORCPT ); Tue, 21 Feb 2012 17:48:08 -0500 MIME-Version: 1.0 In-Reply-To: <20120221224128.GJ3990@outflux.net> References: <1329845435-2313-1-git-send-email-wad@chromium.org> <1329845435-2313-6-git-send-email-wad@chromium.org> <20120221224128.GJ3990@outflux.net> Date: Tue, 21 Feb 2012 16:48:05 -0600 Message-ID: Subject: Re: [PATCH v10 06/11] seccomp: add SECCOMP_RET_ERRNO From: Will Drewry To: Kees Cook Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, linux-doc@vger.kernel.org, kernel-hardening@lists.openwall.com, netdev@vger.kernel.org, x86@kernel.org, arnd@arndb.de, davem@davemloft.net, hpa@zytor.com, mingo@redhat.com, oleg@redhat.com, peterz@infradead.org, rdunlap@xenotime.net, mcgrathr@chromium.org, tglx@linutronix.de, luto@mit.edu, eparis@redhat.com, serge.hallyn@canonical.com, djm@mindrot.org, scarybeasts@gmail.com, indan@nul.nu, pmoore@redhat.com, akpm@linux-foundation.org, corbet@lwn.net, eric.dumazet@gmail.com, markus@chromium.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2008 Lines: 51 On Tue, Feb 21, 2012 at 4:41 PM, Kees Cook wrote: > On Tue, Feb 21, 2012 at 11:30:30AM -0600, Will Drewry wrote: >> diff --git a/kernel/seccomp.c b/kernel/seccomp.c >> index 0043b7e..23f1844 100644 >> --- a/kernel/seccomp.c >> +++ b/kernel/seccomp.c >> @@ -136,22 +136,18 @@ static void *bpf_load(const void *nr, int off, unsigned int size, void *buf) >> ?static u32 seccomp_run_filters(int syscall) >> ?{ >> ? ? ? struct seccomp_filter *f; >> - ? ? u32 ret = SECCOMP_RET_KILL; >> ? ? ? static const struct bpf_load_fn fns = { >> ? ? ? ? ? ? ? bpf_load, >> ? ? ? ? ? ? ? sizeof(struct seccomp_data), >> ? ? ? }; >> + ? ? u32 ret = SECCOMP_RET_ALLOW; >> ? ? ? const void *sc_ptr = (const void *)(uintptr_t)syscall; >> - >> ? ? ? /* >> ? ? ? ?* All filters are evaluated in order of youngest to oldest. The lowest >> ? ? ? ?* BPF return value always takes priority. >> ? ? ? ?*/ >> - ? ? for (f = current->seccomp.filter; f; f = f->prev) { >> - ? ? ? ? ? ? ret = bpf_run_filter(sc_ptr, f->insns, &fns); >> - ? ? ? ? ? ? if (ret != SECCOMP_RET_ALLOW) >> - ? ? ? ? ? ? ? ? ? ? break; >> - ? ? } >> + ? ? for (f = current->seccomp.filter; f; f = f->prev) >> + ? ? ? ? ? ? ret = min_t(u32, ret, bpf_run_filter(sc_ptr, f->insns, &fns)); >> ? ? ? return ret; >> ?} > > I'd like to see this fail closed in the (theoretically impossible, but > why risk it) case of there being no filters at all. Could do something > like this: > > ? ? ? ?u32 ret = current->seccomp.filter ? SECCOMP_RET_ALLOW : SECCOMP_RET_KILL; > > Or, just this, to catch the misbehavior: > > ? ? ? ?if (unlikely(current->seccomp.filter == NULL)) > ? ? ? ? ? ? ? ?return SECCOMP_RET_KILL; I think the last one makes the most sense to me. I'll add it and rev the patch. thanks! -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/