Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753525AbaKCS0t (ORCPT ); Mon, 3 Nov 2014 13:26:49 -0500 Received: from mail-oi0-f52.google.com ([209.85.218.52]:62707 "EHLO mail-oi0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752329AbaKCS0o (ORCPT ); Mon, 3 Nov 2014 13:26:44 -0500 MIME-Version: 1.0 In-Reply-To: References: <1415015305-15494-1-git-send-email-drysdale@google.com> <1415015305-15494-2-git-send-email-drysdale@google.com> <20141103152036.GA7996@ZenIV.linux.org.uk> Date: Mon, 3 Nov 2014 10:26:43 -0800 X-Google-Sender-Auth: jJK28Ut7O7z35u0CURUsPnmdKBM Message-ID: Subject: Re: [PATCH 1/3] fs: add O_BENEATH flag to openat(2) From: Julien Tinnes To: David Drysdale Cc: Andy Lutomirski , Al Viro , "linux-kernel@vger.kernel.org" , Kees Cook , Greg Kroah-Hartman , Meredydd Luff , Will Drewry , Jorge Lucangeli Obes , Ricky Zhou , Lee Campbell , Mike Depinet , James Morris , Paolo Bonzini , Paul Moore , Christoph Hellwig , "Eric W. Biederman" , Linux API , LSM List 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 Mon, Nov 3, 2014 at 9:37 AM, David Drysdale wrote: > On Mon, Nov 3, 2014 at 3:42 PM, Andy Lutomirski wrote: >> This is extremely useful in conjunction with seccomp. > > Yes, that was my understanding of how the Chrome[OS] folk wanted > to use it. Yes, exactly. Without this, if we want to give a sandboxed process A access to a directory, we need to: 1. Create a new 'broker" process B 2. Make sure to have an IPC channel between A and B. 3. SIGSYS open() and openat() in A via seccomp-bpf 4. Have an async-signal-safe handler that can IPC open / openat. There is a lot of hidden complexity in such a set-up. For instance, if you need to prevent contention, the number of threads in the broker B should scale automatically. This is 'fine' (but undesirable) for a big beast such as Chromium which needs such a complex set-ups anyways, but David's patch would make it a lot easier to build a sandbox and whitelist directories for everyone, simply by enforcing O_BENEATH in seccomp and whitelisting open directory file descriptors in the sandboxed process. Julien -- 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/