[PATCH 24/24] Unionfs: Extended Attributes support

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Josef 'Jeff' Sipek
Date: Sunday, January 7, 2007 - 9:13 pm

From: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu>

Extended attribute support.

Signed-off-by: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: David Quigley <dquigley@fsl.cs.sunysb.edu>
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
---
 fs/Kconfig          |    9 ++++
 fs/unionfs/Makefile |    2 +
 fs/unionfs/copyup.c |   75 +++++++++++++++++++++++++++++++
 fs/unionfs/inode.c  |   12 +++++
 fs/unionfs/union.h  |   15 ++++++
 fs/unionfs/xattr.c  |  123 +++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 236 insertions(+), 0 deletions(-)

diff --git a/fs/Kconfig b/fs/Kconfig
index 2e519f4..cf46c71 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -1564,6 +1564,15 @@ config UNION_FS
 
 	  See <http://www.unionfs.org> for details
 
+config UNION_FS_XATTR
+	bool "Unionfs extended attributes"
+	depends on UNION_FS
+	help
+	  Extended attributes are name:value pairs associated with inodes by
+	  the kernel or by users (see the attr(5) manual page).
+
+	  If unsure, say N.
+
 endmenu
 
 menu "Network File Systems"
diff --git a/fs/unionfs/Makefile b/fs/unionfs/Makefile
index 25dd78f..7c98325 100644
--- a/fs/unionfs/Makefile
+++ b/fs/unionfs/Makefile
@@ -3,3 +3,5 @@ obj-$(CONFIG_UNION_FS) += unionfs.o
 unionfs-y := subr.o dentry.o file.o inode.o main.o super.o \
 	stale_inode.o branchman.o rdstate.o copyup.o dirhelper.o \
 	rename.o unlink.o lookup.o commonfops.o dirfops.o sioq.o
+
+unionfs-$(CONFIG_UNION_FS_XATTR) += xattr.o
diff --git a/fs/unionfs/copyup.c b/fs/unionfs/copyup.c
index ad70b24..1d59ff3 100644
--- a/fs/unionfs/copyup.c
+++ b/fs/unionfs/copyup.c
@@ -18,6 +18,75 @@
 
 #include "union.h"
 
+#ifdef CONFIG_UNION_FS_XATTR
+/* copyup all extended attrs for a given dentry */
+static int copyup_xattrs(struct dentry *old_hidden_dentry,
+			 struct dentry *new_hidden_dentry)
+{
+	int err = 0;
+	ssize_t list_size = -1;
+	char *name_list = NULL;
+	char *attr_value = NULL;
+	char *name_list_orig = NULL;
+
+	list_size = vfs_listxattr(old_hidden_dentry, NULL, 0);
+
+	if (list_size <= 0) {
+		err = list_size;
+		goto out;
+	}
+
+	name_list = unionfs_xattr_alloc(list_size + 1, XATTR_LIST_MAX);
+	if (!name_list || IS_ERR(name_list)) {
+		err = PTR_ERR(name_list);
+		goto out;
+	}
+	list_size = vfs_listxattr(old_hidden_dentry, name_list, list_size);
+	attr_value = unionfs_xattr_alloc(XATTR_SIZE_MAX, XATTR_SIZE_MAX);
+	if (!attr_value || IS_ERR(attr_value)) {
+		err = PTR_ERR(name_list);
+		goto out;
+	}
+	name_list_orig = name_list;
+	while (*name_list) {
+		ssize_t size;
+
+		/* Lock here since vfs_getxattr doesn't lock for us */
+		mutex_lock(&old_hidden_dentry->d_inode->i_mutex);
+		size = vfs_getxattr(old_hidden_dentry, name_list,
+				    attr_value, XATTR_SIZE_MAX);
+		mutex_unlock(&old_hidden_dentry->d_inode->i_mutex);
+		if (size < 0) {
+			err = size;
+			goto out;
+		}
+
+		if (size > XATTR_SIZE_MAX) {
+			err = -E2BIG;
+			goto out;
+		}
+		/* Don't lock here since vfs_setxattr does it for us. */
+		err = vfs_setxattr(new_hidden_dentry, name_list, attr_value,
+				   size, 0);
+
+		if (err < 0)
+			goto out;
+		name_list += strlen(name_list) + 1;
+	}
+      out:
+	name_list = name_list_orig;
+
+	if (name_list)
+		unionfs_xattr_free(name_list, list_size + 1);
+	if (attr_value)
+		unionfs_xattr_free(attr_value, XATTR_SIZE_MAX);
+	/* It is no big deal if this fails, we just roll with the punches. */
+	if (err == -ENOTSUPP || err == -EOPNOTSUPP)
+		err = 0;
+	return err;
+}
+#endif /* CONFIG_UNION_FS_XATTR */
+
 /* Determine the mode based on the copyup flags, and the existing dentry. */
 static int copyup_permissions(struct super_block *sb,
 			      struct dentry *old_hidden_dentry,
@@ -344,6 +413,12 @@ int copyup_named_dentry(struct inode *dir, struct dentry *dentry,
 	if ((err = copyup_permissions(sb, old_hidden_dentry, new_hidden_dentry)))
 		goto out_unlink;
 
+#ifdef CONFIG_UNION_FS_XATTR
+	/* Selinux uses extended attributes for permissions. */
+	if ((err = copyup_xattrs(old_hidden_dentry, new_hidden_dentry)))
+		goto out_unlink;
+#endif
+
 	/* do not allow files getting deleted to be reinterposed */
 	if (!d_deleted(dentry))
 		unionfs_reinterpose(dentry);
diff --git a/fs/unionfs/inode.c b/fs/unionfs/inode.c
index 1bbef1c..36f2660 100644
--- a/fs/unionfs/inode.c
+++ b/fs/unionfs/inode.c
@@ -930,10 +930,22 @@ struct inode_operations unionfs_dir_iops = {
 	.rename		= unionfs_rename,
 	.permission	= unionfs_permission,
 	.setattr	= unionfs_setattr,
+#ifdef CONFIG_UNION_FS_XATTR
+	.setxattr	= unionfs_setxattr,
+	.getxattr	= unionfs_getxattr,
+	.removexattr	= unionfs_removexattr,
+	.listxattr	= unionfs_listxattr,
+#endif
 };
 
 struct inode_operations unionfs_main_iops = {
 	.permission	= unionfs_permission,
 	.setattr	= unionfs_setattr,
+#ifdef CONFIG_UNION_FS_XATTR
+	.setxattr	= unionfs_setxattr,
+	.getxattr	= unionfs_getxattr,
+	.removexattr	= unionfs_removexattr,
+	.listxattr	= unionfs_listxattr,
+#endif
 };
 
diff --git a/fs/unionfs/union.h b/fs/unionfs/union.h
index 624132b..f08eb75 100644
--- a/fs/unionfs/union.h
+++ b/fs/unionfs/union.h
@@ -38,6 +38,7 @@
 #include <linux/string.h>
 #include <linux/vmalloc.h>
 #include <linux/writeback.h>
+#include <linux/xattr.h>
 #include <linux/fs_stack.h>
 #include <linux/magic.h>
 
@@ -327,6 +328,20 @@ int unionfs_ioctl_queryfile(struct file *file, unsigned int cmd,
 /* Verify that a branch is valid. */
 int check_branch(struct nameidata *nd);
 
+#ifdef CONFIG_UNION_FS_XATTR
+/* Extended attribute functions. */
+extern void *unionfs_xattr_alloc(size_t size, size_t limit);
+extern void unionfs_xattr_free(void *ptr, size_t size);
+
+extern ssize_t unionfs_getxattr(struct dentry *dentry, const char *name,
+		void *value, size_t size);
+extern int unionfs_removexattr(struct dentry *dentry, const char *name);
+extern ssize_t unionfs_listxattr(struct dentry *dentry, char *list,
+		size_t size);
+extern int unionfs_setxattr(struct dentry *dentry, const char *name,
+		const void *value, size_t size, int flags);
+#endif /* CONFIG_UNION_FS_XATTR */
+
 /* The root directory is unhashed, but isn't deleted. */
 static inline int d_deleted(struct dentry *d)
 {
diff --git a/fs/unionfs/xattr.c b/fs/unionfs/xattr.c
new file mode 100644
index 0000000..881a05d
--- /dev/null
+++ b/fs/unionfs/xattr.c
@@ -0,0 +1,123 @@
+/*
+ * Copyright (c) 2003-2006 Erez Zadok
+ * Copyright (c) 2003-2006 Charles P. Wright
+ * Copyright (c) 2005-2006 Josef 'Jeff' Sipek
+ * Copyright (c) 2005-2006 Junjiro Okajima
+ * Copyright (c) 2005      Arun M. Krishnakumar
+ * Copyright (c) 2004-2006 David P. Quigley
+ * Copyright (c) 2003-2004 Mohammad Nayyer Zubair
+ * Copyright (c) 2003      Puja Gupta
+ * Copyright (c) 2003      Harikesavan Krishnan
+ * Copyright (c) 2003-2006 Stony Brook University
+ * Copyright (c) 2003-2006 The Research Foundation of State University of New York*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include "union.h"
+
+/* This is lifted from fs/xattr.c */
+void *unionfs_xattr_alloc(size_t size, size_t limit)
+{
+	void *ptr;
+
+	if (size > limit)
+		return ERR_PTR(-E2BIG);
+
+	if (!size)		/* size request, no buffer is needed */
+		return NULL;
+	else if (size <= PAGE_SIZE)
+		ptr = kmalloc(size, GFP_KERNEL);
+	else
+		ptr = vmalloc(size);
+	if (!ptr)
+		return ERR_PTR(-ENOMEM);
+	return ptr;
+}
+
+void unionfs_xattr_free(void *ptr, size_t size)
+{
+	if (!size)		/* size request, no buffer was needed */
+		return;
+	else if (size <= PAGE_SIZE)
+		kfree(ptr);
+	else
+		vfree(ptr);
+}
+
+/* BKL held by caller.
+ * dentry->d_inode->i_mutex locked
+ */
+ssize_t unionfs_getxattr(struct dentry * dentry, const char *name, void *value,
+		size_t size)
+{
+	struct dentry *hidden_dentry = NULL;
+	int err = -EOPNOTSUPP;
+
+	lock_dentry(dentry);
+
+	hidden_dentry = unionfs_lower_dentry(dentry);
+
+	err = vfs_getxattr(hidden_dentry, (char*) name, value, size);
+
+	unlock_dentry(dentry);
+	return err;
+}
+
+/* BKL held by caller.
+ * dentry->d_inode->i_mutex locked
+ */
+int unionfs_setxattr(struct dentry *dentry, const char *name, const void *value,
+		size_t size, int flags)
+{
+	struct dentry *hidden_dentry = NULL;
+	int err = -EOPNOTSUPP;
+
+	lock_dentry(dentry);
+	hidden_dentry = unionfs_lower_dentry(dentry);
+
+	err = vfs_setxattr(hidden_dentry, (char*) name, (void*) value, size, flags);
+
+	unlock_dentry(dentry);
+	return err;
+}
+
+/* BKL held by caller.
+ * dentry->d_inode->i_mutex locked
+ */
+int unionfs_removexattr(struct dentry *dentry, const char *name)
+{
+	struct dentry *hidden_dentry = NULL;
+	int err = -EOPNOTSUPP;
+
+	lock_dentry(dentry);
+	hidden_dentry = unionfs_lower_dentry(dentry);
+
+	err = vfs_removexattr(hidden_dentry, (char*) name);
+
+	unlock_dentry(dentry);
+	return err;
+}
+
+/* BKL held by caller.
+ * dentry->d_inode->i_mutex locked
+ */
+ssize_t unionfs_listxattr(struct dentry * dentry, char *list, size_t size)
+{
+	struct dentry *hidden_dentry = NULL;
+	int err = -EOPNOTSUPP;
+	char *encoded_list = NULL;
+
+	lock_dentry(dentry);
+
+	hidden_dentry = unionfs_lower_dentry(dentry);
+
+	encoded_list = list;
+	err = vfs_listxattr(hidden_dentry, encoded_list, size);
+
+	unlock_dentry(dentry);
+	return err;
+}
+
-- 
1.4.4.2

-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 00/24] Unionfs, try #4, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 01/24] Unionfs: Documentation, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 02/24] lookup_one_len_nd - lookup_one_len with name ..., Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 03/24] Unionfs: Branch management functionality, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 04/24] Unionfs: Common file operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 05/24] Unionfs: Copyup Functionality, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 06/24] Unionfs: Dentry operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 07/24] Unionfs: File operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:12 pm)
[PATCH 08/24] Unionfs: Directory file operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 09/24] Unionfs: Directory manipulation helper functions, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 10/24] Unionfs: Inode operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 11/24] Unionfs: Lookup helper functions, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 12/24] Unionfs: Main module functions, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 13/24] Unionfs: Readdir state, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 14/24] Unionfs: Rename, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 15/24] Unionfs: Privileged operations workqueue, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 16/24] Unionfs: Handling of stale inodes, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 17/24] Unionfs: Miscellaneous helper functions, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 18/24] Unionfs: Superblock operations, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 19/24] Unionfs: Helper macros/inlines, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 20/24] Unionfs: Internal include file, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 21/24] Unionfs: Include file, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 22/24] Unionfs: Unlink, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 23/24] Unionfs: Kconfig and Makefile, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
[PATCH 24/24] Unionfs: Extended Attributes support, Josef 'Jeff' Sipek, (Sun Jan 7, 9:13 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Andrew Morton, (Mon Jan 8, 12:18 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Mon Jan 8, 12:43 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Engelhardt, (Mon Jan 8, 1:24 pm)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Mon Jan 8, 1:51 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Andrew Morton, (Mon Jan 8, 2:19 pm)
Re: [PATCH 19/24] Unionfs: Helper macros/inlines, Andrew Morton, (Mon Jan 8, 2:28 pm)
Re: [PATCH 04/24] Unionfs: Common file operations, Andrew Morton, (Mon Jan 8, 2:28 pm)
Re: [PATCH 05/24] Unionfs: Copyup Functionality, Andrew Morton, (Mon Jan 8, 2:29 pm)
Re: [PATCH 06/24] Unionfs: Dentry operations, Andrew Morton, (Mon Jan 8, 2:29 pm)
Re: [PATCH 18/24] Unionfs: Superblock operations, Andrew Morton, (Mon Jan 8, 2:29 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Mon Jan 8, 2:30 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Mon Jan 8, 2:32 pm)
Re: [PATCH 01/24] Unionfs: Documentation , Jan Engelhardt, (Mon Jan 8, 2:53 pm)
Re: [PATCH 05/24] Unionfs: Copyup Functionality, Shaya Potter, (Mon Jan 8, 3:00 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Andrew Morton, (Mon Jan 8, 3:02 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Mon Jan 8, 3:21 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Michael Halcrow, (Mon Jan 8, 4:00 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Mon Jan 8, 4:15 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Mon Jan 8, 4:25 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Engelhardt, (Mon Jan 8, 4:34 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Mon Jan 8, 4:37 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Mon Jan 8, 4:45 pm)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Mon Jan 8, 5:03 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Christoph Hellwig, (Tue Jan 9, 2:49 am)
Re: [PATCH 01/24] Unionfs: Documentation, Christoph Hellwig, (Tue Jan 9, 2:53 am)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Tue Jan 9, 3:36 am)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Tue Jan 9, 3:43 am)
Re: [PATCH 01/24] Unionfs: Documentation, Christoph Hellwig, (Tue Jan 9, 3:47 am)
Re: [PATCH 01/24] Unionfs: Documentation, Christoph Hellwig, (Tue Jan 9, 3:48 am)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Tue Jan 9, 5:15 am)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Tue Jan 9, 5:26 am)
Re: [PATCH 01/24] Unionfs: Documentation, Trond Myklebust, (Tue Jan 9, 9:30 am)
Re: [PATCH 01/24] Unionfs: Documentation, Trond Myklebust, (Tue Jan 9, 9:39 am)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Tue Jan 9, 9:41 am)
Re: [PATCH 01/24] Unionfs: Documentation, Trond Myklebust, (Tue Jan 9, 10:03 am)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Tue Jan 9, 10:04 am)
Re: [PATCH 01/24] Unionfs: Documentation, Trond Myklebust, (Tue Jan 9, 10:07 am)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Tue Jan 9, 10:11 am)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Tue Jan 9, 10:16 am)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Tue Jan 9, 10:16 am)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Tue Jan 9, 10:28 am)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Tue Jan 9, 10:34 am)
Re: [PATCH 01/24] Unionfs: Documentation, Raz Ben-Jehuda(caro), (Tue Jan 9, 11:03 am)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Tue Jan 9, 11:24 am)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Engelhardt, (Tue Jan 9, 3:02 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Wed Jan 10, 9:12 am)
Re: [PATCH 01/24] Unionfs: Documentation , Erez Zadok, (Wed Jan 10, 1:15 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Wed Jan 10, 1:24 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Wed Jan 10, 2:27 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Josef Sipek, (Wed Jan 10, 4:20 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Shaya Potter, (Wed Jan 10, 4:29 pm)
Re: [PATCH 01/24] Unionfs: Documentation, Jan Kara, (Thu Jan 11, 1:54 am)