Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757617AbXHUFf2 (ORCPT ); Tue, 21 Aug 2007 01:35:28 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752848AbXHUFfQ (ORCPT ); Tue, 21 Aug 2007 01:35:16 -0400 Received: from netops-testserver-3-out.sgi.com ([192.48.171.28]:46909 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751882AbXHUFfO (ORCPT ); Tue, 21 Aug 2007 01:35:14 -0400 Message-ID: <46CA798C.1020101@sgi.com> Date: Tue, 21 Aug 2007 15:35:08 +1000 From: Timothy Shimmin User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Jeff Layton CC: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, xfs-oss Subject: Re: [PATCH 2/4] Fix mainline filesystems to handle ATTR_KILL_ bits correctly References: <200708202053.l7KKrMYv017763@dantu.rdu.redhat.com> In-Reply-To: <200708202053.l7KKrMYv017763@dantu.rdu.redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1727 Lines: 47 Jeff Layton wrote: > This should fix all of the filesystems in the mainline kernels to handle > ATTR_KILL_SUID and ATTR_KILL_SGID correctly. For most of them, this is > just a matter of making sure that they call generic_attrkill early in > the setattr inode op. > > Signed-off-by: Jeff Layton > --- > fs/xfs/linux-2.6/xfs_iops.c | 5 ++++- > --- a/fs/xfs/linux-2.6/xfs_iops.c > +++ b/fs/xfs/linux-2.6/xfs_iops.c > @@ -651,12 +651,15 @@ xfs_vn_setattr( > struct iattr *attr) > { > struct inode *inode = dentry->d_inode; > - unsigned int ia_valid = attr->ia_valid; > + unsigned int ia_valid; > bhv_vnode_t *vp = vn_from_inode(inode); > bhv_vattr_t vattr = { 0 }; > int flags = 0; > int error; > > + generic_attrkill(inode->i_mode, attr); > + ia_valid = attr->ia_valid; > + > if (ia_valid & ATTR_UID) { > vattr.va_mask |= XFS_AT_UID; > vattr.va_uid = attr->ia_uid; Looks reasonable to me for XFS. Acked-by: Tim Shimmin So before, this clearing would happen directly in notify_change() and now this won't happen until notify_change() calls i_op->setattr which for a particular fs it can call generic_attrkill() to do it. So I guess for the cases where i_op->setattr is called outside of via notify_change, we don't normally have ATTR_KILL_SUID/SGID set so that nothing will happen there? I guess just wondering the effect with having the code on all setattr's. (I'm not familiar with the code path) --Tim - 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/