From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tiger Yang Date: Tue, 10 Feb 2009 10:47:52 +0800 Subject: [Ocfs2-devel] [PATCH] ocfs2/security: Check xattr support in security_init. In-Reply-To: <1234130189-8091-1-git-send-email-tao.ma@oracle.com> References: <1234130189-8091-1-git-send-email-tao.ma@oracle.com> Message-ID: <4990EAD8.6030501@oracle.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ocfs2-devel@oss.oracle.com Hi, Tao I already fixed this issue :) http://oss.oracle.com/pipermail/ocfs2-devel/2008-December/003559.html Thanks, tiger Tao Ma wrote: > If the system supports selinux, we will return sucessfully from > ocfs2_init_security_get if it is called for the mount point. > And in that case if the volume doesn't have xattr support, we > will not be able to create a new inode in the mount dir because > ocfs2_mknod will try to set security attributes for a new created > inode. This patch check xattr support in ocfs2_init_security_get, > so it will let ocfs2_mknod knows that we don't support xattr and > it don't need to init security for the new inode in that case. > > Signed-off-by: Tao Ma > --- > fs/ocfs2/xattr.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c > index 5aec833..8a7db21 100644 > --- a/fs/ocfs2/xattr.c > +++ b/fs/ocfs2/xattr.c > @@ -5289,6 +5289,9 @@ int ocfs2_init_security_get(struct inode *inode, > struct inode *dir, > struct ocfs2_security_xattr_info *si) > { > + if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb))) > + return -EOPNOTSUPP; > + > return security_inode_init_security(inode, dir, &si->name, &si->value, > &si->value_len); > }