From mboxrd@z Thu Jan 1 00:00:00 1970 From: Valerie Aurora Subject: [PATCH 39/39] union-mount: Implement union-aware lsetxattr() Date: Mon, 3 May 2010 16:12:38 -0700 Message-ID: <1272928358-20854-40-git-send-email-vaurora@redhat.com> References: <1272928358-20854-1-git-send-email-vaurora@redhat.com> Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Christoph Hellwig , Jan Blunck , Valerie Aurora To: Alexander Viro Return-path: Received: from mx1.redhat.com ([209.132.183.28]:34747 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932407Ab0ECXOQ (ORCPT ); Mon, 3 May 2010 19:14:16 -0400 In-Reply-To: <1272928358-20854-1-git-send-email-vaurora@redhat.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: --- fs/xattr.c | 31 +++++++++++++++++++++++++------ 1 files changed, 25 insertions(+), 6 deletions(-) diff --git a/fs/xattr.c b/fs/xattr.c index f930ab7..0a56629 100644 --- a/fs/xattr.c +++ b/fs/xattr.c @@ -321,17 +321,36 @@ SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname, size_t, size, int, flags) { struct path path; + struct nameidata nd; + struct vfsmount *mnt; + char *tmp; int error; - error = user_lpath(pathname, &path); + error = user_path_nd(AT_FDCWD, pathname, 0, &nd, &path, &tmp); if (error) return error; - error = mnt_want_write(path.mnt); - if (!error) { - error = setxattr(path.dentry, name, value, size, flags); - mnt_drop_write(path.mnt); - } + + if (IS_UNIONED_DIR(&nd.path)) + mnt = nd.path.mnt; + else + mnt = path.mnt; + + error = mnt_want_write(mnt); + if (error) + goto out; + + error = union_copyup(&nd, &path); + if (error) + goto out_drop_write; + + error = setxattr(path.dentry, name, value, size, flags); + +out_drop_write: + mnt_drop_write(mnt); +out: path_put(&path); + path_put(&nd.path); + putname(tmp); return error; } -- 1.6.3.3