Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1191405
| Path | csiph.com!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Dave Chinner <david@fromorbit.com> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 0/7] Initial support for user namespace owned mounts |
| Date | Fri, 24 Jul 2015 01:50:01 +0200 |
| Message-ID | <pPypr-5dm-1@gated-at.bofh.it> (permalink) |
| References | <pN1xE-5OG-13@gated-at.bofh.it> <pN20F-6mi-1@gated-at.bofh.it> <pN3SN-H5-1@gated-at.bofh.it> <pOJGh-6Gx-3@gated-at.bofh.it> <pOX6y-zY-21@gated-at.bofh.it> <pP2SC-Cp-39@gated-at.bofh.it> <pP5xa-4rv-11@gated-at.bofh.it> <pP6jy-6y6-35@gated-at.bofh.it> <pPdXI-I3-21@gated-at.bofh.it> <pPozL-7MD-15@gated-at.bofh.it> |
| X-Original-To | "J. Bruce Fields" <bfields@fieldses.org> |
| X-Ironport-Anti-Spam-Filtered | true |
| X-Ironport-Anti-Spam-Result | A2AICQDYfLFVPBqxLXlcgxWBPYJVg3yiMgaaaAQCAoFPTQEBAQEBAQcBAQEBQAE/hCMBAQEDATocIwULCAMYCSUPBSUDBxoTiCYHyhYBAQEHAiAZhgWFLoQ9SQeELAWUYYw5mSGBCoMrLDGBBQEeB4EgAQEB |
| MIME-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Disposition | inline |
| User-Agent | Mutt/1.5.21 (2010-09-15) |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 65 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Austin S Hemmelgarn <ahferroin7@gmail.com>, "Eric W. Biederman" <ebiederm@xmission.com>, Casey Schaufler <casey@schaufler-ca.com>, Andy Lutomirski <luto@amacapital.net>, Seth Forshee <seth.forshee@canonical.com>, Alexander Viro <viro@zeniv.linux.org.uk>, Linux FS Devel <linux-fsdevel@vger.kernel.org>, LSM List <linux-security-module@vger.kernel.org>, SELinux-NSA <selinux@tycho.nsa.gov>, Serge Hallyn <serge.hallyn@canonical.com>, "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org> |
| X-Original-Date | Fri, 24 Jul 2015 09:48:54 +1000 |
| X-Original-Message-ID | <20150723234854.GI7943@dastard> |
| X-Original-References | <20150717000914.GO7943@dastard> <87380nobs4.fsf@x220.int.ebiederm.org> <20150717024735.GW3902@dastard> <20150721173721.GE11050@fieldses.org> <20150722075640.GE7943@dastard> <20150722140923.GD22718@fieldses.org> <55AFCA6A.60304@gmail.com> <20150722174100.GJ22718@fieldses.org> <20150723015135.GH7943@dastard> <20150723131928.GA11582@fieldses.org> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | aioe.org linux.kernel:1191405 |
Show key headers only | View raw
On Thu, Jul 23, 2015 at 09:19:28AM -0400, J. Bruce Fields wrote: > On Thu, Jul 23, 2015 at 11:51:35AM +1000, Dave Chinner wrote: > > On Wed, Jul 22, 2015 at 01:41:00PM -0400, J. Bruce Fields wrote: > > > On Wed, Jul 22, 2015 at 12:52:58PM -0400, Austin S Hemmelgarn wrote: > > > > On 2015-07-22 10:09, J. Bruce Fields wrote: > > > > >On Wed, Jul 22, 2015 at 05:56:40PM +1000, Dave Chinner wrote: > > > > >>On Tue, Jul 21, 2015 at 01:37:21PM -0400, J. Bruce Fields wrote: > > > > >>>On Fri, Jul 17, 2015 at 12:47:35PM +1000, Dave Chinner wrote: > > > > >>>So, for example, a screwed up on-disk directory structure shouldn't > > > > >>>result in creating a cycle in the dcache and then deadlocking. > > > > >> > > > > >>Therein lies the problem: how do you detect such structural defects > > > > >>without doing a full structure validation? > > > > > > > > > >You can prevent cycles in a graph if you can prevent adding an edge > > > > >which would be part of a cycle. > > > > > > > > > Except if the user can write to the filesystem's backing storage (be > > > > it a device or a file), and has sufficient knowledge of the on-disk > > > > structures, they can create all the cycles they want in the > > > > metadata. So unless the kernel builds the graph internally by > > > > parsing the metadata _and_ has some way to detect that the on-disk > > > > metadata has hit a cycle (which may not just involve 2 items), > > > > > > Understood. Again, see the d_ancestor call in d_splice_alias, this is > > > exactly what it checks for. > > > > But that only addresses one type of loop in one specific metadata > > structure. > > Yep, agreed! > > > There's plenty of other ways you could construct metadata > > loops that are essentially undetected and result in either deadlock > > or livelock within the filesystem code itself. e.g. just make btree > > sibling pointers loop over a range of entries that have the same > > index key (e.g. free space extents of the same size). If allocation > > then falls into this loop, the kernel will just spin searching the > > same blocks for something it will never find. Such resource > > consumption attacks are trivial to construct but extremely difficult > > to detect because they exploit normal behaviour of the structure and > > algorithms by mangling trusted pointers. > > Interesting example, thanks! I doubt this particular example would be > *that* hard to detect? Yes, it can be detected, but it's not as easy as it sounds because of abstractions between tree walking and record parsing. > But understood that there may be lots of others. Yeah, that's just one of many, many ways I can think of modifying on disk structures to screw up the kernel. Cheers, Dave. -- Dave Chinner david@fromorbit.com -- 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/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [PATCH 0/7] Initial support for user namespace owned mounts Austin S Hemmelgarn <ahferroin7@gmail.com> - 2015-07-22 19:00 +0200
Re: [PATCH 0/7] Initial support for user namespace owned mounts "J. Bruce Fields" <bfields@fieldses.org> - 2015-07-22 19:50 +0200
Re: [PATCH 0/7] Initial support for user namespace owned mounts "J. Bruce Fields" <bfields@fieldses.org> - 2015-07-23 15:20 +0200
Re: [PATCH 0/7] Initial support for user namespace owned mounts Dave Chinner <david@fromorbit.com> - 2015-07-24 01:50 +0200
csiph-web