linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/7] NFS: if ATTR_KILL_S*ID bits are set, then skip mode change
@ 2007-09-04 14:37 Jeff Layton
  2007-09-14 10:25 ` [NFS] " Greg Banks
  0 siblings, 1 reply; 10+ messages in thread
From: Jeff Layton @ 2007-09-04 14:37 UTC (permalink / raw)
  To: linux-kernel, linux-fsdevel
  Cc: linux-cifs-client, nfs, ecryptfs-devel, reiserfs-devel, unionfs

If the ATTR_KILL_S*ID bits are set then any mode change is only for
clearing the setuid/setgid bits. For NFS skip the mode change and
let the server handle it.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
 fs/nfs/inode.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 45633f9..441bd8b 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -327,6 +327,10 @@ nfs_setattr(struct dentry *dentry, struct iattr *attr)
 
 	nfs_inc_stats(inode, NFSIOS_VFSSETATTR);
 
+	/* skip mode change if it's just for clearing setuid/setgid */
+	if (attr->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID))
+		attr->ia_valid &= ~ATTR_MODE;
+
 	if (attr->ia_valid & ATTR_SIZE) {
 		if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
 			attr->ia_valid &= ~ATTR_SIZE;
-- 
1.5.2.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2007-09-17 13:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-04 14:37 [PATCH 2/7] NFS: if ATTR_KILL_S*ID bits are set, then skip mode change Jeff Layton
2007-09-14 10:25 ` [NFS] " Greg Banks
2007-09-14 11:02   ` Jeff Layton
2007-09-14 13:09     ` Greg Banks
2007-09-14 13:38       ` Jeff Layton
2007-09-14 14:40         ` [NFS] " Greg Banks
2007-09-14 14:58           ` Jeff Layton
2007-09-14 15:43             ` Greg Banks
2007-09-14 16:01               ` Jeff Layton
2007-09-17 13:10               ` Trond Myklebust

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).