Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1990104ybt; Mon, 15 Jun 2020 15:06:11 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxHv9/zq3zKWFE91RqKdeuNSke/nSZxndYvSAFLFOPCHH2E9qhJrM8Mm05o9AIWa78F5QM8 X-Received: by 2002:a17:906:39d9:: with SMTP id i25mr26967933eje.510.1592258771474; Mon, 15 Jun 2020 15:06:11 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592258771; cv=none; d=google.com; s=arc-20160816; b=PLgVy6Riuh7rHIU7G/aB+aIYCbM6JStsSG3ZNV2Of1W/qNgWEEHAXHTqWivEJCr1oE VflKjwJoeqzS86RCtZaWA8rbt9gYim1HYckM5MD/Iy7Km9v5d27yJbpwQ9Wb82NoptVf MwEgrnbBM6pZwf0V9vpekemQ5LRdybP5bHeCcmZll+69HlADQ41nWwXoyZZ61w8dTRuz IwH1ZARp+5dz9RdTlawBfzRcd87uvC9NhHkQ3IgIM1UCqfqq0FgubmpfbP4R2qvoy7I4 +xeYlZiNlZu100qgDNUycA7XahC2sNPFgEtl+oI2qG+aIp4rgLx8InpabT4mLDMsbqM/ WnIA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=2rD1oOR1/Sa9O4tajEfXIZ7xkZkD/tbqmW9BnwXaQiM=; b=eYjffduWUDF0RG9z4rBtAk3vf2xOsHVyAprJjWs8QkiEPtZxV6uldtsxJMmcwGMI9E KroEASLaiLNjk/AAyVR33JEI0qGNbcmXxwuYQOWTPt3/gSI21DuxuIwnEEIE7BNQdatX 9ncY0pl+lv0Or79XoSWLd8t4iRb0fdn9OSEYmp9j0yHd9ISVsedzGLkiRPqM8NYCLB3s GA5CeAV2Idry8U1CPDZZamTavwLNon8SDty8xwTk7k7Schh6kCHQoeChx5elsNFkoXsp atL/bKU+uM3Ul3kVpBajqYPU5cScIralKIjO2o7LWcFxT6Sk6CSnwwIkoombG322HY3J C1Tg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id z19si3130429ejr.442.2020.06.15.15.05.48; Mon, 15 Jun 2020 15:06:11 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726388AbgFOWCB (ORCPT + 99 others); Mon, 15 Jun 2020 18:02:01 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:55821 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725903AbgFOWCB (ORCPT ); Mon, 15 Jun 2020 18:02:01 -0400 Received: from ip-109-41-2-3.web.vodafone.de ([109.41.2.3] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1jkxAn-00012Q-Pr; Mon, 15 Jun 2020 22:01:46 +0000 Date: Tue, 16 Jun 2020 00:01:43 +0200 From: Christian Brauner To: Jann Horn Cc: Stefano Garzarella , Kees Cook , Sargun Dhillon , Aleksa Sarai , Jens Axboe , Stefan Hajnoczi , Jeff Moyer , io-uring , kernel list , Kernel Hardening Subject: Re: [RFC] io_uring: add restrictions to support untrusted applications and guests Message-ID: <20200615220143.qrm4ffbkpaew4xdv@wittgenstein> References: <20200609142406.upuwpfmgqjeji4lc@steredhat> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jun 15, 2020 at 11:04:06AM +0200, Jann Horn wrote: > +Kees, Christian, Sargun, Aleksa, kernel-hardening for their opinions > on seccomp-related aspects Just fyi, I'm on holiday this week so my responses have some non-significant lag into early next week. > > On Tue, Jun 9, 2020 at 4:24 PM Stefano Garzarella wrote: > > Hi Jens, > > Stefan and I have a proposal to share with io_uring community. > > Before implementing it we would like to discuss it to receive feedbacks and > > to see if it could be accepted: > > > > Adding restrictions to io_uring > > ===================================== > > The io_uring API provides submission and completion queues for performing > > asynchronous I/O operations. The queues are located in memory that is > > accessible to both the host userspace application and the kernel, making it > > possible to monitor for activity through polling instead of system calls. This > > design offers good performance and this makes exposing io_uring to guests an > > attractive idea for improving I/O performance in virtualization. > [...] > > Restrictions > > ------------ > > This document proposes io_uring API changes that safely allow untrusted > > applications or guests to use io_uring. io_uring's existing security model is > > that of kernel system call handler code. It is designed to reject invalid > > inputs from host userspace applications. Supporting guests as io_uring API > > clients adds a new trust domain with access to even fewer resources than host > > userspace applications. > > > > Guests do not have direct access to host userspace application file descriptors > > or memory. The host userspace application, a Virtual Machine Monitor (VMM) such > > as QEMU, grants access to a subset of its file descriptors and memory. The > > allowed file descriptors are typically the disk image files belonging to the > > guest. The memory is typically the virtual machine's RAM that the VMM has > > allocated on behalf of the guest. > > > > The following extensions to the io_uring API allow the host application to > > grant access to some of its file descriptors. > > > > These extensions are designed to be applicable to other use cases besides > > untrusted guests and are not virtualization-specific. For example, the > > restrictions can be used to allow only a subset of sqe operations available to > > an application similar to seccomp syscall whitelisting. > > > > An address translation and memory restriction mechanism would also be > > necessary, but we can discuss this later. > > > > The IOURING_REGISTER_RESTRICTIONS opcode > > ---------------------------------------- > > The new io_uring_register(2) IOURING_REGISTER_RESTRICTIONS opcode permanently > > installs a feature whitelist on an io_ring_ctx. The io_ring_ctx can then be > > passed to untrusted code with the knowledge that only operations present in the > > whitelist can be executed. > > This approach of first creating a normal io_uring instance and then > installing restrictions separately in a second syscall means that it > won't be possible to use seccomp to restrict newly created io_uring > instances; code that should be subject to seccomp restrictions and > uring restrictions would only be able to use preexisting io_uring > instances that have already been configured by trusted code. > > So I think that from the seccomp perspective, it might be preferable > to set up these restrictions in the io_uring_setup() syscall. It might So from what I can gather from this proposal, this would be a separate security model for io_uring? I'm not to thrilled about that tbh. (There's some discussion around extending seccomp - also at kernel summit.) But doing the whole restriction setup in io_uring_setup() would at least mean that if seccomp is extended to filter first-level pointers it could know about all the security restrictions that apply to this io_uring instance (Which I think you were getting at, Jann?). Hm, would it make sense that if a task has a seccomp filter installed that blocks openat syscalls that io_uring should automatically block openat() calls as well or is the expectation "just block all of io_uring if you're worried about that"? Christian