All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yang Xu <xuyang2018.jy@fujitsu.com>
To: <linux-fsdevel@vger.kernel.org>, <ceph-devel@vger.kernel.org>
Cc: <viro@zeniv.linux.org.uk>, <david@fromorbit.com>,
	<jlayton@kernel.org>, Yang Xu <xuyang2018.jy@fujitsu.com>
Subject: [PATCH v1 1/3] vfs: Add inode_sgid_strip() api
Date: Mon, 28 Mar 2022 17:56:27 +0800	[thread overview]
Message-ID: <1648461389-2225-1-git-send-email-xuyang2018.jy@fujitsu.com> (raw)

inode_sgid_strip() function is used to strip S_ISGID mode
when creat/open/mknod file.

Suggested-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Yang Xu <xuyang2018.jy@fujitsu.com>
---
 fs/inode.c         | 12 ++++++++++++
 include/linux/fs.h |  3 +++
 2 files changed, 15 insertions(+)

diff --git a/fs/inode.c b/fs/inode.c
index 63324df6fa27..1f964e7f9698 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -2405,3 +2405,15 @@ struct timespec64 current_time(struct inode *inode)
 	return timestamp_truncate(now, inode);
 }
 EXPORT_SYMBOL(current_time);
+
+void inode_sgid_strip(struct user_namespace *mnt_userns, struct inode *dir,
+		      umode_t *mode)
+{
+	if ((dir && dir->i_mode & S_ISGID) &&
+		(*mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP) &&
+		!S_ISDIR(*mode) &&
+		!in_group_p(i_gid_into_mnt(mnt_userns, dir)) &&
+		!capable_wrt_inode_uidgid(mnt_userns, dir, CAP_FSETID))
+		*mode &= ~S_ISGID;
+}
+EXPORT_SYMBOL(inode_sgid_strip);
diff --git a/include/linux/fs.h b/include/linux/fs.h
index e2d892b201b0..639c830ad797 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1921,6 +1921,9 @@ extern long compat_ptr_ioctl(struct file *file, unsigned int cmd,
 void inode_init_owner(struct user_namespace *mnt_userns, struct inode *inode,
 		      const struct inode *dir, umode_t mode);
 extern bool may_open_dev(const struct path *path);
+void inode_sgid_strip(struct user_namespace *mnt_userns, struct inode *dir,
+		      umode_t *mode);
+
 
 /*
  * This is the "filldir" function type, used by readdir() to let
-- 
2.27.0


             reply	other threads:[~2022-03-28  9:56 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-28  9:56 Yang Xu [this message]
2022-03-28  9:56 ` [PATCH v1 2/3] vfs: strip file's S_ISGID mode on vfs instead of on filesystem Yang Xu
2022-03-29 11:08   ` Christian Brauner
2022-03-29 11:12   ` Jeff Layton
2022-03-29 22:10     ` Dave Chinner
2022-03-30 10:44       ` Christian Brauner
2022-03-30 16:44         ` Darrick J. Wong
2022-03-31  9:30           ` xuyang2018.jy
2022-03-29 10:45 ` [PATCH v1 1/3] vfs: Add inode_sgid_strip() api Christian Brauner
2022-03-29 22:15   ` Dave Chinner
2022-03-30 16:34 ` Darrick J. Wong
2022-03-31  1:49   ` xuyang2018.jy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1648461389-2225-1-git-send-email-xuyang2018.jy@fujitsu.com \
    --to=xuyang2018.jy@fujitsu.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=david@fromorbit.com \
    --cc=jlayton@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.