From: Jeff Layton Date: Thu, 18 Oct 2007 10:05:21 +0000 (-0700) Subject: NFS: if ATTR_KILL_S*ID bits are set, then skip mode change X-Git-Tag: v2.6.24-rc1~399 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=188b95dd8ecb02dd6c6e5534cddc5a89aa4e2852;p=~shefty%2Frdma-dev.git NFS: if ATTR_KILL_S*ID bits are set, then skip mode change 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 Cc: Trond Myklebust Cc: "J. Bruce Fields" Cc: Christoph Hellwig Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 6c22453d77a..6d2f2a3eccf 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -357,6 +357,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;