Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 37A58C433EF for ; Thu, 9 Dec 2021 23:30:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233033AbhLIXd5 (ORCPT ); Thu, 9 Dec 2021 18:33:57 -0500 Received: from mail106.syd.optusnet.com.au ([211.29.132.42]:47215 "EHLO mail106.syd.optusnet.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229760AbhLIXd5 (ORCPT ); Thu, 9 Dec 2021 18:33:57 -0500 Received: from dread.disaster.area (pa49-181-243-119.pa.nsw.optusnet.com.au [49.181.243.119]) by mail106.syd.optusnet.com.au (Postfix) with ESMTPS id E42A286D1C6; Fri, 10 Dec 2021 10:30:19 +1100 (AEDT) Received: from dave by dread.disaster.area with local (Exim 4.92.3) (envelope-from ) id 1mvSrh-001BAs-If; Fri, 10 Dec 2021 10:30:17 +1100 Date: Fri, 10 Dec 2021 10:30:17 +1100 From: Dave Chinner To: Andreas Dilger Cc: "Theodore Y. Ts'o" , Roman Anufriev , linux-ext4 , Jan Kara , Wang Shilong , Dmitry Monakhov , "Darrick J. Wong" Subject: Re: [PATCH] ext4: compare inode's i_projid with EXT4_DEF_PROJID rather than check EXT4_INODE_PROJINHERIT flag Message-ID: <20211209233017.GA279368@dread.disaster.area> References: <1638883122-8953-1-git-send-email-dotdot@yandex-team.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.4 cv=e9dl9Yl/ c=1 sm=1 tr=0 ts=61b2918d a=BEa52nrBdFykVEm6RU8P4g==:117 a=BEa52nrBdFykVEm6RU8P4g==:17 a=kj9zAlcOel0A:10 a=IOMw9HtfNCkA:10 a=7-415B0cAAAA:8 a=BNiw2nVSQP9JRQGiq_wA:9 a=CjuIK1q_8ugA:10 a=biEYGPWJfzWAr4FL6Ov7:22 Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Thu, Dec 09, 2021 at 03:53:55PM -0700, Andreas Dilger wrote: > On Dec 7, 2021, at 12:34 PM, Theodore Y. Ts'o wrote: > > > > On Tue, Dec 07, 2021 at 05:05:19PM +0300, Roman Anufriev wrote: > >>> Commit 7ddf79a10395 ("ext4: only set project inherit bit for directory") > >>> removes EXT4_INODE_PROJINHERIT flag from regular files. This makes > >>> ext4_statfs() output incorrect (function does not apply quota limits > >>> on used/available space, etc) when called on dentry of regular file > >>> with project quota enabled. > > > > Under what circumstance is userspace trying to call statfs on a file > > descriptor? > > Who knows what users do? Calling statfs() on a regular file works fine > (returns stats for the filesystem), so I don't see why it wouldn't be > consistent when calling statfs() on a file with projid set? > > Darrick, how does XFS handle this case? I think it makes sense to be > consistent with that implementation, since that was the main reason to > remove PROJINHERIT from regular files in the first place. If PROJINHERIT is set on the inode, it will return the information for the projid on that inode. XFS doesn't care what type of inode it is, just whether the PROJINHERIT flag is set. That said, on XFS, only directory inodes will have the PROJINHERIT flag set. So, in effect, only statfs() on directory inodes can report project quota limits. PROJINHERIT just indicates the default projid that an inode is created with; it does not mean that directory tree quotas are what the user it doing with them... > > Removing the test for EXT4_INODE_PROJINHERIT will cause > > incorrect/misleading results being returned in the case where we have > > a directory where a directory hierarchy is using project id's, but > > which is *not* using PROJINHERIT. > > One alternative would be to check the PROJINHERIT status of the parent > directory after calling statfs() on the regular file? That should > keep the semantics for PROJINHERIT the same, but avoid inconsistent > results if called on a regular file: This just opens a bigger can of worms that still has no consistent solution. What if the user has changed the projid of the file and it doesn't match the parent directory? That then reports something irrelevant to the user. What if there are hard links and the parent directories have different projid state? This can happen - we don't allow hard links into a new projid controlled directory, but we allow them into non-projid controlled directories even if the source is from a projid controlled heirarchy. We can add PROJINHERIT after a directory has already been populated. We can remove PROJINHERIT, too, after hardlinks within the same projid have been created. Hence a regular file inode can have different parent PROJINHERIT depending on path. How do you do consistency then, because it's clearly not a directory quota controlled setup and there's no way of detecting that from statfs() context? Cheers, Dave. -- Dave Chinner david@fromorbit.com