public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Move XATTR_SECURITY_PREFIX macro to common location
@ 2004-01-16 21:14 Chris Wright
  2004-01-16 21:20 ` [PATCH 2/2] Default hooks protecting the XATTR_SECURITY_PREFIX namespace Chris Wright
  0 siblings, 1 reply; 5+ messages in thread
From: Chris Wright @ 2004-01-16 21:14 UTC (permalink / raw)
  To: akpm, torvalds
  Cc: Andreas Gruenbacher, Michael Kerrisk, Stephen Smalley,
	linux-kernel, linux-security-module

Move the XATTR_SECURITY_PREFIX macro to the xattr.h header so that it's
in a common location.

 fs/devpts/xattr_security.c |    2 --
 fs/ext2/xattr_security.c   |    2 --
 fs/ext3/xattr_security.c   |    2 --
 include/linux/xattr.h      |    2 ++
 security/selinux/hooks.c   |    7 +++----
 5 files changed, 5 insertions(+), 10 deletions(-)

===== fs/devpts/xattr_security.c 1.1 vs edited =====
--- 1.1/fs/devpts/xattr_security.c	Sun May 25 14:08:03 2003
+++ edited/fs/devpts/xattr_security.c	Fri Jan 16 12:14:14 2004
@@ -8,8 +8,6 @@
 #include <linux/security.h>
 #include "xattr.h"
 
-#define XATTR_SECURITY_PREFIX "security."
-
 static size_t
 devpts_xattr_security_list(struct dentry *dentry, char *buffer)
 {
===== fs/ext2/xattr_security.c 1.1 vs edited =====
--- 1.1/fs/ext2/xattr_security.c	Mon May  5 06:19:21 2003
+++ edited/fs/ext2/xattr_security.c	Fri Jan 16 12:14:14 2004
@@ -10,8 +10,6 @@
 #include <linux/ext2_fs.h>
 #include "xattr.h"
 
-#define XATTR_SECURITY_PREFIX "security."
-
 static size_t
 ext2_xattr_security_list(char *list, struct inode *inode,
 			const char *name, int name_len)
===== fs/ext3/xattr_security.c 1.1 vs edited =====
--- 1.1/fs/ext3/xattr_security.c	Mon May  5 06:18:48 2003
+++ edited/fs/ext3/xattr_security.c	Fri Jan 16 12:14:15 2004
@@ -11,8 +11,6 @@
 #include <linux/ext3_fs.h>
 #include "xattr.h"
 
-#define XATTR_SECURITY_PREFIX "security."
-
 static size_t
 ext3_xattr_security_list(char *list, struct inode *inode,
 		    const char *name, int name_len)
===== include/linux/xattr.h 1.4 vs edited =====
--- 1.4/include/linux/xattr.h	Tue Feb 25 08:21:08 2003
+++ edited/include/linux/xattr.h	Fri Jan 16 12:14:15 2004
@@ -12,4 +12,6 @@
 #define XATTR_CREATE	0x1	/* set value, fail if attr already exists */
 #define XATTR_REPLACE	0x2	/* set value, fail if attr does not exist */
 
+#define XATTR_SECURITY_PREFIX	"security."
+
 #endif	/* _LINUX_XATTR_H */
===== security/selinux/hooks.c 1.11 vs edited =====
--- 1.11/security/selinux/hooks.c	Tue Dec 30 00:40:59 2003
+++ edited/security/selinux/hooks.c	Fri Jan 16 12:14:15 2004
@@ -16,10 +16,6 @@
  *      as published by the Free Software Foundation.
  */
 
-#define XATTR_SECURITY_PREFIX "security."
-#define XATTR_SELINUX_SUFFIX "selinux"
-#define XATTR_NAME_SELINUX XATTR_SECURITY_PREFIX XATTR_SELINUX_SUFFIX
-
 #include <linux/config.h>
 #include <linux/module.h>
 #include <linux/init.h>
@@ -61,6 +57,9 @@
 
 #include "avc.h"
 #include "objsec.h"
+
+#define XATTR_SELINUX_SUFFIX "selinux"
+#define XATTR_NAME_SELINUX XATTR_SECURITY_PREFIX XATTR_SELINUX_SUFFIX
 
 #ifdef CONFIG_SECURITY_SELINUX_DEVELOP
 int selinux_enforcing = 0;

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-01-19 18:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-16 21:14 [PATCH 1/2] Move XATTR_SECURITY_PREFIX macro to common location Chris Wright
2004-01-16 21:20 ` [PATCH 2/2] Default hooks protecting the XATTR_SECURITY_PREFIX namespace Chris Wright
2004-01-16 23:37   ` Andreas Gruenbacher
2004-01-17 16:41   ` Theodore Ts'o
2004-01-19 18:25     ` Chris Wright

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox