From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:39230 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725910AbeLDPmo (ORCPT ); Tue, 4 Dec 2018 10:42:44 -0500 Date: Tue, 4 Dec 2018 10:42:43 -0500 From: Vivek Goyal To: Miklos Szeredi Cc: Stephen Smalley , Ondrej Mosnacek , "J. Bruce Fields" , Mark Salyzyn , Paul Moore , linux-kernel@vger.kernel.org, overlayfs , linux-fsdevel@vger.kernel.org, selinux@vger.kernel.org, Daniel J Walsh Subject: Re: overlayfs access checks on underlying layers Message-ID: <20181204154243.GA16818@redhat.com> References: <6b125e8e-413f-f8e6-c7ae-50f7235c8960@tycho.nsa.gov> <4c20a261-5ce1-f0a2-8d40-c6032a023216@tycho.nsa.gov> <20181204151549.GA21509@redhat.com> <20181204152248.GB21509@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Tue, Dec 04, 2018 at 04:31:09PM +0100, Miklos Szeredi wrote: > On Tue, Dec 4, 2018 at 4:22 PM Vivek Goyal wrote: > > > Having said that, this still create little anomaly when mknod to client > > is not allowed on context label. So a device file, which is on lower > > and client can not open it for read/write on host, it can now be opened > > for read/write because mounter will allow access. So why it is different > > that regular copy up. Well, in regular copy up, we created a copy of > > the original object and allowed writing to that object (cp --preserve=all) > > model. But in case of device file, writes will go to same original > > object. (And not a separate copy). > > That's true. > > In that sense copy up of special file should result in upper having > the same label as of lower, right? I guess that might be reasonable (if this behavior is a concern). So even after copy up, client will not be able to read/write a device if it was not allowed on lower. Stephen, what do you think about retaining label of lower for device files during copy up. What about socket/fifo. Thanks Vivek