2005-04-17 02:20:36 +04:00
# include <linux/reiserfs_fs.h>
# include <linux/errno.h>
# include <linux/fs.h>
# include <linux/pagemap.h>
# include <linux/xattr.h>
# include <linux/reiserfs_xattr.h>
# include <asm/uaccess.h>
# define XATTR_SECURITY_PREFIX "security."
static int
2005-07-13 07:21:28 +04:00
security_get ( struct inode * inode , const char * name , void * buffer , size_t size )
2005-04-17 02:20:36 +04:00
{
2005-07-13 07:21:28 +04:00
if ( strlen ( name ) < sizeof ( XATTR_SECURITY_PREFIX ) )
return - EINVAL ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
if ( is_reiserfs_priv_object ( inode ) )
return - EPERM ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
return reiserfs_xattr_get ( inode , name , buffer , size ) ;
2005-04-17 02:20:36 +04:00
}
static int
2005-07-13 07:21:28 +04:00
security_set ( struct inode * inode , const char * name , const void * buffer ,
size_t size , int flags )
2005-04-17 02:20:36 +04:00
{
2005-07-13 07:21:28 +04:00
if ( strlen ( name ) < sizeof ( XATTR_SECURITY_PREFIX ) )
return - EINVAL ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
if ( is_reiserfs_priv_object ( inode ) )
return - EPERM ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
return reiserfs_xattr_set ( inode , name , buffer , size , flags ) ;
2005-04-17 02:20:36 +04:00
}
2005-07-13 07:21:28 +04:00
static int security_del ( struct inode * inode , const char * name )
2005-04-17 02:20:36 +04:00
{
2005-07-13 07:21:28 +04:00
if ( strlen ( name ) < sizeof ( XATTR_SECURITY_PREFIX ) )
return - EINVAL ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
if ( is_reiserfs_priv_object ( inode ) )
return - EPERM ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
return 0 ;
2005-04-17 02:20:36 +04:00
}
static int
2005-07-13 07:21:28 +04:00
security_list ( struct inode * inode , const char * name , int namelen , char * out )
2005-04-17 02:20:36 +04:00
{
2005-07-13 07:21:28 +04:00
int len = namelen ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
if ( is_reiserfs_priv_object ( inode ) )
return 0 ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
if ( out )
memcpy ( out , name , len ) ;
2005-04-17 02:20:36 +04:00
2005-07-13 07:21:28 +04:00
return len ;
2005-04-17 02:20:36 +04:00
}
struct reiserfs_xattr_handler security_handler = {
. prefix = XATTR_SECURITY_PREFIX ,
. get = security_get ,
. set = security_set ,
. del = security_del ,
. list = security_list ,
} ;